Package

at.logic.gapt.formats

lisp

Permalink

package lisp

Content Hierarchy
Visibility
  1. Public
  2. All

Type Members

  1. case class LAtom(name: String) extends SExpression with Product with Serializable

    Permalink
  2. case class LCons(car: SExpression, cdr: SExpression) extends SExpression with Product with Serializable

    Permalink
  3. case class LList(elements: SExpression*) extends SExpression with Product with Serializable

    Permalink
  4. sealed abstract class SExpression extends AnyRef

    Permalink

    Lisp SExpression Datatypes and Parser This is a basic LISP S-expression parser, without quote character, macros or other fancy stuff.

    Lisp SExpression Datatypes and Parser This is a basic LISP S-expression parser, without quote character, macros or other fancy stuff. Atoms have a reduced namespace and need to be extended if necessary.

    Printing a Datastructure should output valid Lisp.

  5. class SExpressionParser extends Parser

    Permalink

Value Members

  1. object LFun

    Permalink
  2. object LFunOrAtom

    Permalink
  3. object SExpressionParser

    Permalink

Ungrouped