References
summary | ||
public |
F each(callback: *, array: *, left: *, right: *) |
|
public |
F get(a: *, i: *): * |
|
public |
F repr(array: *, left: *, right: *): * |
|
public |
F set(a: *, i: *, v: *) |
|
public |
F slice(array: *, left: *, right: *): * |
|
public |
F sort(f: *, array: *): * |
|
public |
F splice(a: *, ai: *, aj: *, b: *, bi: *, bj: *): * |
map
summary | ||
public |
F chain(iterables: *, out: *): * |
|
public |
F combinations(iterable: *, repeat: *, out: *): * |
|
public |
F combinationswithrepetition(iterable: *, r: *, out: *): * |
|
public |
F compress(iterable: *, selector: *, out: *): * |
|
public |
F dropwhile(predicate: *, iterable: *, out: *): * |
|
public |
F enumerate(iterable: *, out: *): * |
|
public |
F filter(predicate: *, iterable: *, out: *): * |
|
public |
F filterfalse(predicate: *, iterable: *, out: *): * |
|
public |
F group(key: *, iterable: *, out: *): * |
|
public |
F islice(iterable: *, start: *, stop: *, step: *, out: *): * |
|
public |
F map(callable: *, iterable: *, out: *): * Maps a callable object over an array. |
|
public |
F permutations(iterable: *, repeat: *, out: *): * |
|
public |
F product(iterables: *, repeat: *, out: *): * |
|
public |
F repeat(element: *, times: *, out: *): * |
|
public |
F reversed(iterable: *, out: *): * |
|
public |
F sorted(f: *, iterable: *): * |
|
public |
F starmap(callable: *, iterable: *, out: *): * Maps a callable object over an array. |
|
public |
F takewhile(predicate: *, iterable: *, out: *): * |
|
public |
F zip(iterables: *, out: *): * |