Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface Monad1<M, A>

Type parameters

Hierarchy

Implemented by

Index

Properties

Properties

ap

ap: function

Type declaration

    • <B>(fab: Type<M, function>): Type<M, B>
    • Type parameters

      • B

      Parameters

      • fab: Type<M, function>

      Returns Type<M, B>

chain

chain: function

Type declaration

    • <B>(fa: function): Type<M, B>
    • Type parameters

      • B

      Parameters

      • fa: function
          • (a: A): Type<M, B>
          • Parameters

            • a: A

            Returns Type<M, B>

      Returns Type<M, B>

map

map: function

Type declaration

    • <B>(f: function): Type<M, B>
    • Type parameters

      • B

      Parameters

      • f: function
          • (a: A): B
          • Parameters

            • a: A

            Returns B

      Returns Type<M, B>

Generated using TypeDoc