Skip to main content Link Search Menu Expand Document (external link)

ByPassers overview

This module implements a Type that represents an array of ByPasser’s (see ByPasser.ts)


Table of contents


Destructors

toSyntheticByPasser

Returns a ByPasser that is equivalent to self. The returned ByPasser executes successively each ByPasser of self until it meets one that returns a some. If such a ByPasser exists, the corresponding some is returned. Otherwise, it returns a none.

Signature

export declare const toSyntheticByPasser: (self: Type) => PPByPasser.Action.Type

Models

Type (interface)

Type of a ByPassers

Signature

export interface Type extends ReadonlyArray<PPByPasser.Type> {}