class Object

Constants

Minus
Plus
Times

Public Instance Methods

alpha() click to toggle source

Greek alphabet

# File lib/annlat/LaRuby.rb, line 251
def alpha() Atom.new('\alpha ') end
beta() click to toggle source
# File lib/annlat/LaRuby.rb, line 252
def beta() Atom.new('\beta ') end
cDelta() click to toggle source
# File lib/annlat/LaRuby.rb, line 279
def cDelta() Atom.new('\Delta ') end
cGamma() click to toggle source
# File lib/annlat/LaRuby.rb, line 278
def cGamma() Atom.new('\Gamma ') end
cLambda() click to toggle source
# File lib/annlat/LaRuby.rb, line 281
def cLambda() Atom.new('\Lmabda ') end
cOmega() click to toggle source
# File lib/annlat/LaRuby.rb, line 288
def cOmega() Atom.new('\Omega ') end
cPhi() click to toggle source
# File lib/annlat/LaRuby.rb, line 286
def cPhi() Atom.new('\Phi ') end
cPi() click to toggle source
# File lib/annlat/LaRuby.rb, line 283
def cPi() Atom.new('\Pi ') end
cPsi() click to toggle source
# File lib/annlat/LaRuby.rb, line 287
def cPsi() Atom.new('\Psi ') end
cSigma() click to toggle source
# File lib/annlat/LaRuby.rb, line 284
def cSigma() Atom.new('\Sigma ') end
cTheta() click to toggle source
# File lib/annlat/LaRuby.rb, line 280
def cTheta() Atom.new('\Theta ') end
cUpsilon() click to toggle source
# File lib/annlat/LaRuby.rb, line 285
def cUpsilon() Atom.new('\Upsilon ') end
cXi() click to toggle source
# File lib/annlat/LaRuby.rb, line 282
def cXi() Atom.new('\Xi ') end
chi() click to toggle source
# File lib/annlat/LaRuby.rb, line 275
def chi() Atom.new('\chi ') end
delta() click to toggle source
# File lib/annlat/LaRuby.rb, line 254
def delta() Atom.new('\delta ') end
epsilon() click to toggle source
# File lib/annlat/LaRuby.rb, line 255
def epsilon() Atom.new('\epsilon ') end
eta() click to toggle source
# File lib/annlat/LaRuby.rb, line 258
def eta() Atom.new('\eta ') end
final?() click to toggle source
# File lib/annlat/Sundries.rb, line 1
def final?
  instance_methods(false).include? :showHow
end
gamma() click to toggle source
# File lib/annlat/LaRuby.rb, line 253
def gamma() Atom.new('\gamma ') end
get_type(thing) click to toggle source
# File lib/annlat/AnnLat.rb, line 20
def get_type(thing)
  if thing.class.ancestors.include? Concept
    :Concept
  elsif thing.class.ancestors.include? Latex
    :Latex
  elsif thing.class.ancestors.include? AnnLat
    :AnnLat
  else
    thing.class.to_s.to_sym
  end
end
kappa() click to toggle source
# File lib/annlat/LaRuby.rb, line 261
def kappa() Atom.new('\kappa ') end
mu() click to toggle source
# File lib/annlat/LaRuby.rb, line 262
def mu() Atom.new('\mu ') end
my_json() click to toggle source
# File lib/annlat/AnnLat.rb, line 16
def my_json
  self.to_s
end
nu() click to toggle source
# File lib/annlat/LaRuby.rb, line 263
def nu() Atom.new('\nu ') end
omega() click to toggle source
# File lib/annlat/LaRuby.rb, line 277
def omega() Atom.new('\omega ') end
phi() click to toggle source
# File lib/annlat/LaRuby.rb, line 273
def phi() Atom.new('\phi ') end
pi() click to toggle source
# File lib/annlat/LaRuby.rb, line 265
def pi() Atom.new('\pi ') end
psi() click to toggle source
# File lib/annlat/LaRuby.rb, line 276
def psi() Atom.new('\psi ') end
rho() click to toggle source
# File lib/annlat/LaRuby.rb, line 267
def rho() Atom.new('\rho ') end
sigma() click to toggle source
# File lib/annlat/LaRuby.rb, line 269
def sigma() Atom.new('\sigma ') end
tau() click to toggle source
# File lib/annlat/LaRuby.rb, line 271
def tau() Atom.new('\tau ') end
theta() click to toggle source
# File lib/annlat/LaRuby.rb, line 259
def theta() Atom.new('\theta ') end
upsilon() click to toggle source
# File lib/annlat/LaRuby.rb, line 272
def upsilon() Atom.new('\upsilon ') end
varepsilon() click to toggle source
# File lib/annlat/LaRuby.rb, line 256
def varepsilon() Atom.new('\varepsilon ') end
varphi() click to toggle source
# File lib/annlat/LaRuby.rb, line 274
def varphi() Atom.new('\varphi ') end
varpi() click to toggle source
# File lib/annlat/LaRuby.rb, line 266
def varpi() Atom.new('\varpi ') end
varrho() click to toggle source
# File lib/annlat/LaRuby.rb, line 268
def varrho() Atom.new('\varrho ') end
varsigma() click to toggle source
# File lib/annlat/LaRuby.rb, line 270
def varsigma() Atom.new('\varsigma ') end
vartheta() click to toggle source
# File lib/annlat/LaRuby.rb, line 260
def vartheta() Atom.new('\vartheta ') end
which_types(stuff) click to toggle source
# File lib/annlat/AnnLat.rb, line 32
def which_types(stuff)
  subtypes = []
  stuff.each do |stuffoid|
    subtypes.insert(-1, get_type(stuffoid))
  end
  subtypes
end
xi() click to toggle source
# File lib/annlat/LaRuby.rb, line 264
def xi() Atom.new('\xi ') end
zeta() click to toggle source
# File lib/annlat/LaRuby.rb, line 257
def zeta() Atom.new('\zeta ') end