R/03-constructors.r

Defines functions aleph beth

aleph <- function(n=0)
{
  w <- new("aleph", n=n)
  
  return( w )
}



beth <- function(n=0)
{
  w <- new("beth", n=n)
  
  return( w )
}
wrathematics/tfca documentation built on May 4, 2019, 10:54 a.m.