append
append: (x: string) => this
concat
concat: (xs: string[]) => this
drop
drop: (n: number) => this
every
every: (f: (t: string) => boolean) => boolean
exists
exists: () => boolean
filter
filter: (f: (t: string) => boolean) => this
find
find: (f: (t: string) => boolean) => undefined | string
flatMap
flatMap: <U>(f: (t: string) => U[]) => Fluent<U> forEach
forEach: (f: (t: string, i: number) => void) => void
has
has: (v: string) => boolean
join
join: (s: string) => string
keep
keep: (xs: string[]) => this
map
map: (f: (t: string) => string) => this
nth
nth: (i: number) => string
prepend
prepend: (x: string) => this
reject
reject: (f: (t: string) => boolean) => this
set
set: (i: number, x: string) => this
slice
slice: (a: number, b?: number) => this
some
some: (f: (t: string) => boolean) => boolean
take
take: (n: number) => this
valueOf
valueOf: () => string[]
without
without: (xs: string[]) => this
Readonlyxs
xs: string[]