R/GrammarOverflow.R

Defines functions is.GrammarOverflow print.GrammarOverflow NewGrammarOverFlow

Documented in is.GrammarOverflow print.GrammarOverflow

NewGrammarOverFlow <- function(...) {
  ret = list(overflow = TRUE, ...)
  class(ret) = "GrammarOverflow"
  return (ret)
}

print.GrammarOverflow <- function(x, ...) {
  print("Grammar Overflow", ...)
}

is.GrammarOverflow <- function(object) {
  return (class(object) == "GrammarOverflow")
}

Try the gramEvol package in your browser

Any scripts or data that you put into this service are public.

gramEvol documentation built on July 18, 2020, 5:07 p.m.