Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IPathMetrics

Hierarchy

  • IPathMetrics

Index

Properties

any

any: (test: (element: IPathMetric) => boolean) => boolean

Type declaration

cast

cast: <R>() => IIterable<R>

Type declaration

contains

contains: (element?: Object) => boolean

Type declaration

    • (element?: Object): boolean
    • Parameters

      • Optional element: Object

      Returns boolean

elementAt

elementAt: (index: number) => IPathMetric

Type declaration

every

every: (test: (element: IPathMetric) => boolean) => boolean

Type declaration

expand

expand: <T>(f: (element: IPathMetric) => IIterable<T>) => IIterable<T>

Type declaration

firstWhere

firstWhere: (test: (element: IPathMetric) => boolean, props: { orElse?: () => undefined | IPathMetric }) => IPathMetric

Type declaration

fold

fold: <T>(initialValue: T, combine: (previousValue: T, element: IPathMetric) => T) => T

Type declaration

    • <T>(initialValue: T, combine: (previousValue: T, element: IPathMetric) => T): T
    • Type parameters

      • T

      Parameters

      • initialValue: T
      • combine: (previousValue: T, element: IPathMetric) => T

      Returns T

followedBy

followedBy: (other: IIterable<IPathMetric>) => IIterable<IPathMetric>

Type declaration

forEach

forEach: (f: (element: IPathMetric) => void) => void

Type declaration

getFirst

getFirst: () => IPathMetric

Type declaration

getHashCode

getHashCode: () => number

Type declaration

    • (): number
    • Returns number

getIsEmpty

getIsEmpty: () => boolean

Type declaration

    • (): boolean
    • Returns boolean

getIsNotEmpty

getIsNotEmpty: () => boolean

Type declaration

    • (): boolean
    • Returns boolean

getIterator

getIterator: () => IIterator<IPathMetric>

Type declaration

getLast

getLast: () => IPathMetric

Type declaration

getLength

getLength: () => number

Type declaration

    • (): number
    • Returns number

getSingle

getSingle: () => IPathMetric

Type declaration

join

join: (separator: string) => string

Type declaration

    • (separator: string): string
    • Parameters

      • separator: string

      Returns string

lastWhere

lastWhere: (test: (element: IPathMetric) => boolean, props: { orElse?: () => undefined | IPathMetric }) => IPathMetric

Type declaration

map

map: <T>(f: (e: IPathMetric) => T) => IIterable<T>

Type declaration

reduce

reduce: (combine: (value: IPathMetric, element: IPathMetric) => IPathMetric) => IPathMetric

Type declaration

singleWhere

singleWhere: (test: (element: IPathMetric) => boolean, props: { orElse?: () => undefined | IPathMetric }) => IPathMetric

Type declaration

skip

skip: (count: number) => IIterable<IPathMetric>

Type declaration

skipWhile

skipWhile: (test: (value: IPathMetric) => boolean) => IIterable<IPathMetric>

Type declaration

take

take: (count: number) => IIterable<IPathMetric>

Type declaration

takeWhile

takeWhile: (test: (value: IPathMetric) => boolean) => IIterable<IPathMetric>

Type declaration

toList

toList: (props: { growable: boolean }) => IList<IPathMetric>

Type declaration

toSet

toSet: () => ISet<IPathMetric>

Type declaration

toString

toString: () => string

Type declaration

    • (): string
    • Returns string

where

where: (test: (element: IPathMetric) => boolean) => IIterable<IPathMetric>

Type declaration

whereType

whereType: <T>() => IIterable<T>

Type declaration

Generated using TypeDoc