LISP – CLOS

  • Post author:
  • Post category:LISP
  • Post comments:2 Comments

This topicis about LISP - CLOS. Common LISP predated the advance of object-oriented programming by couple of decades. However, it object-orientation was incorporated into it at a later stage. Defining…

Continue ReadingLISP – CLOS

LISP – Tree

  • Post author:
  • Post category:LISP
  • Post comments:1 Comment

This topic is about LISP - Tree. You can build tree data structures from cons cells, as lists of lists. To implement tree structures, you will have to design functionalities…

Continue ReadingLISP – Tree

LISP – Set

  • Post author:
  • Post category:LISP
  • Post comments:1 Comment

This topic is about LISP - Set. Common Lisp does not provide a set data type. However, it provides number of functions that allows set operations to be performed on…

Continue ReadingLISP – Set

LISP – Vectors

  • Post author:
  • Post category:LISP
  • Post comments:2 Comments

This topic is about LISP - Vectors. Vectors are one-dimensional arrays, therefore a subtype of array. Vectors and lists are collectively called sequences. Therefore all sequence generic functions and array…

Continue ReadingLISP – Vectors