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