or

Signature

forall a: (Maybe a).(Maybe a) => Maybe a

Documentation

Properties

Source Code

Defined in source/maybe/maybe.js at line 57, column 18
{
    /*~*/
    Nothing: function alt(aMaybe) {
      assertMaybe('Maybe.Nothing#or', aMaybe);
      return aMaybe;
    },

    /*~*/
    Just: function alt(aMaybe) {
      assertMaybe('Maybe.Just#or', aMaybe);
      return this;
    }
  }
Licence
MIT
Module
folktale/maybe/maybe
On This Page
Authors
Copyright
(c) 2013-2017 Quildreen Motta, and CONTRIBUTORS
Authors
  • @joshmili
Maintainers
  • Quildreen Motta <queen@robotlolita.me> (http://robotlolita.me/)