module Enzymator::Types::List::Monad::Array

Public Class Methods

enzy_unit(object) click to toggle source
# File lib/enzymator/types/list/monad/array.rb, line 7
def self.enzy_unit(object)
  [object]
end

Public Instance Methods

enzy_join() click to toggle source
# File lib/enzymator/types/list/monad/array.rb, line 10
def enzy_join
  flatten(1)
end