FP

Undocumented in source.

Members

Aliases

Condition
alias Condition = bool delegate(T)
Undocumented in source.
DFunc
alias DFunc = T delegate(T, T)
Undocumented in source.
Func
alias Func = T delegate(T)
Undocumented in source.
TCond
alias TCond = bool delegate(T[])
Undocumented in source.
TFunc
alias TFunc = T[] delegate(T[])
Undocumented in source.

Functions

drop
TFunc drop(int n)

drop

dropWhile
TFunc dropWhile(Condition p)

dropWhile

filter
TFunc filter(Condition p)

filter

map
TFunc map(Func f)

map

seq
T[] seq(T start, T end, T step)

seq (Like R)

take
TFunc take(int n)

take

takeWhile
TFunc takeWhile(Condition p)

takeWhile

zipWith
TFunc zipWith(DFunc op, T[] other)

zipWith

Structs

Pipe
struct Pipe

Functional Programming Pipe

Meta