module Stitcher::TypeOperators

Public Instance Methods

!() click to toggle source
# File lib/stitcher/type.rb, line 11
def !
        Stitcher.type_not self
end
&(other) click to toggle source
# File lib/stitcher/type.rb, line 7
def & other
        Stitcher.type_and self, other
end
+@() click to toggle source
# File lib/stitcher/type.rb, line 15
def +@
        Stitcher.type_plus_at self
end
|(other) click to toggle source
# File lib/stitcher/type.rb, line 3
def | other
        Stitcher.type_or self, other
end