Hierarchy (View Summary)

Constructors

  • Parameters

    • ...args: [xs: string[]]

    Returns Tag

Properties

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

Methods

  • Type Parameters

    Parameters

    • this: K
    • xs: string[]

    Returns K