Files
rk35xx-android14/external/bazel-skylib/docs/collections_doc.md
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

2.0 KiB
Executable File

Skylib module containing functions that operate on collections.

collections.after_each

collections.after_each(separator, iterable)

Inserts separator after each item in iterable.

PARAMETERS

Name Description Default Value
separator The value to insert after each item in iterable. none
iterable The list into which to intersperse the separator. none

RETURNS

A new list with separator after each item in iterable.

collections.before_each

collections.before_each(separator, iterable)

Inserts separator before each item in iterable.

PARAMETERS

Name Description Default Value
separator The value to insert before each item in iterable. none
iterable The list into which to intersperse the separator. none

RETURNS

A new list with separator before each item in iterable.

collections.uniq

collections.uniq(iterable)

Returns a list of unique elements in iterable.

Requires all the elements to be hashable.

PARAMETERS

Name Description Default Value
iterable An iterable to filter. none

RETURNS

A new list with all unique elements from iterable.