Include this mixin to access convenient factory methods.
include Fear::Either::Mixin Right('flower') #=> #<Fear::Right value='flower'> Left('beaf') #=> #<Fear::Legt value='beaf'>
297 298 299
# File 'lib/fear/either.rb', line 297 def Left(value) Left.new(value) end
303 304 305
# File 'lib/fear/either.rb', line 303 def Right(value) Right.new(value) end