@eagleoutice/flowr - v2.9.14
    Preparing search index...

    For the specifications of pureFns etc. please have a look at InputClassifierFunctionIdentifier.

    interface InputClassifierConfig {
        networkFns: readonly InputClassifierFunctionIdentifier[];
        pureFns: readonly InputClassifierFunctionIdentifier[];
        randomFns: readonly InputClassifierFunctionIdentifier[];
        readFileFns: readonly InputClassifierFunctionIdentifier[];
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

    Hierarchy-Diagram

    UML class diagram of InputClassifierConfig
    Index

    Properties

    networkFns: readonly InputClassifierFunctionIdentifier[]

    Functions that read from the network

    Functions which are considered to be pure (i.e., deterministic, trusted, safe, idempotent on the lub of the input types)

    randomFns: readonly InputClassifierFunctionIdentifier[]

    Functions that produce a random value Note: may need to check with respect to seeded randomness

    readFileFns: readonly InputClassifierFunctionIdentifier[]

    Functions that read from the file system