Neon

Additionnal Libraries

Download additionnal libraries to use them in your projects. You can modify, redistribute any of these files without any restriction.

Rational number library

A rational number library that defines a new type (Frac) that represents a fraction. The library overloads most of the basic arithmetic operators to work with fractions.

Download Source (.ne)

Complex numbers library

A complex numbers library that defines a new type (Cmplx) that represents a complex number. The library defines the variable i as the complex number i. Most of the basic arithmetic operators are overloaded.

Download Source (.ne)

Matrix library

A matrix library that defines functions for creating matrices, such as mat_comp (matrix comprehension), and functions for performing basic calculations on matrices.

Download Source (.ne)

Peano numbers library

A library that defines numbers as 0 ans S(n). It provides functions for creating and displaying numbers, as well as functions for performing calculations on Peano numbers.

Download Source (.ne)

Queue library

A library for creating, using and displaying queues. The queues are implemented using Neon lists.

Download Source (.ne)

Another queue library

A library for creating, using and displaying queues. The queues are implemented using custom chained lists.

Download Source (.ne)

Set library

A very simple library for manipulating sets.

Download Source (.ne)

Stack library

A library for creating, using and displaying stacks. The queues are implemented using chained lists.

Download Source (.ne)

Hash tables library

A very simple hash tables library.

Download Source (.ne)