Skip to content
Stanislav Podolia edited this page Aug 8, 2019 · 3 revisions

Flow Wiki

FFn

Builtin functions - use the functions above instead

  • FLift
    This is for using any other transform function

    • fn : (?) -> ??
  • FCompose
    f1 o f2 == f1(f2(x))

    • f1 : FFn<flow, ??>
    • f2 : FFn<?, flow>
  • FIdentity
    Trivial function

  • FNegate

  • FAddConst

    • c : double
  • FMulConst

    • c : double
  • FMaxConst

    • c : ?
  • FMinConst

    • c : ?
  • FEqual

    • v : ?
  • FIf

    • then : ?
    • else_ : ?
  • fcompose -> FFn

    • f1 : FFn<flow, ??>
    • f2 : FFn<?, flow>
Clone this wiki locally