module RFunc

Constants

VERSION

Public Instance Methods

None() click to toggle source
# File lib/rfunc.rb, line 16
def None; RFunc::None.new end
Option(v) click to toggle source
# File lib/rfunc.rb, line 12
def Option(v); RFunc::Option.new(v) end
Seq(a) click to toggle source
# File lib/rfunc.rb, line 10
def Seq(a); RFunc::Seq.new(a) end
Some(v) click to toggle source
# File lib/rfunc.rb, line 14
def Some(v); RFunc::Some.new(v) end