class Castaway::Element::Base::Attribute

Public Instance Methods

[](memo, value) click to toggle source
# File lib/castaway/element/base.rb, line 25
def [](memo, value)
  fn[memo, value]
end
initial() click to toggle source
# File lib/castaway/element/base.rb, line 17
def initial
  if _initial.respond_to?(:call)
    _initial.call
  else
    _initial
  end
end