aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test/tests.lux (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* - Re-named "Vector" to "Sequence" to avoid confusion with mathematical vectors.Eduardo Julian2017-10-161-1/+1
|
* - Removed the useless Seq type.Eduardo Julian2017-10-161-1/+0
|
* - Re-named "Result" type back to "Error".Eduardo Julian2017-10-161-1/+1
|
* - Re-named lux/world/fs to lux/world/file.Eduardo Julian2017-10-161-1/+1
|
* - Tree parsing.Eduardo Julian2017-09-191-5/+6
|
* - Added tests for lux/math/random.Eduardo Julian2017-09-051-1/+2
|
* - Renamed "Log" to "Writer".Eduardo Julian2017-09-041-1/+1
|
* - Implemented network I/O for TCP and UDP (in the JVM).Eduardo Julian2017-09-041-1/+3
|
* - Added HTML-generation module.Eduardo Julian2017-08-301-3/+9
| | | - Added CSS-generation module.
* - Implemented Agent-Oriented Programming.Eduardo Julian2017-08-031-0/+2
|
* - Removed polytipic text-encoders.Eduardo Julian2017-08-011-2/+1
| | | - Simplified a lot of polytypism.
* - Added more structures for instants and dates.Eduardo Julian2017-07-291-1/+2
|
* - Re-implemented Tainted using models.Eduardo Julian2017-07-291-1/+2
|
* - Renamed "Thunk" to "Lazy", and moved it from lux/control/thunk to ↵Eduardo Julian2017-07-291-1/+1
| | | | lux/data/lazy.
* - Added units of measurement as a feature to decorate Int values for safer ↵Eduardo Julian2017-07-251-1/+2
| | | | calculations.
* - Refactored Time into Instant and Duration.Eduardo Julian2017-07-241-1/+2
|
* - Relocated the "object" and "concatenative" modules.Eduardo Julian2017-07-231-6/+6
|
* - Added module for time (Codec has currently been tested only for time after ↵Eduardo Julian2017-07-231-0/+1
| | | | epoch).
* - Eliminated lux/math/simple. If you want simple math, use lux/type/auto ↵Eduardo Julian2017-07-221-2/+1
| | | | with the relevant signatures.
* - Removed algebraic effects module. If you want effects, just go with ↵Eduardo Julian2017-07-221-2/+1
| | | | finally-tagless approach.
* - Lux no longer has a Char primitive data-type.Eduardo Julian2017-07-021-2/+2
|
* - Implemented single-inheritance.Eduardo Julian2017-06-261-1/+1
| | | - Fixed some bugs.
* - Forgot to update the tests for ordered collections.Eduardo Julian2017-06-241-4/+4
|
* - CLI, Syntax and Lexer are now based upon a common Parser type.Eduardo Julian2017-06-211-4/+5
|
* - Implemented functional object-oriented programming.Eduardo Julian2017-06-171-0/+1
|
* - Renamed "Error" to "Result".Eduardo Julian2017-05-171-1/+1
|
* - Small fixes and refactorings.Eduardo Julian2017-05-091-6/+3
|
* - Renamed "AST" to "Code".Eduardo Julian2017-05-071-6/+10
|
* - Move the modules under lux/function/* to be under lux/control/*.Eduardo Julian2017-04-101-5/+5
|
* - Renamed "lambda" to "function".Eduardo Julian2017-04-101-4/+5
|
* - Added XML support.Eduardo Julian2017-04-061-1/+2
|
* - Moved lux/lexer and lux/lexer/regex to lux/data/text/lexer and ↵Eduardo Julian2017-04-051-35/+37
| | | | | | | | | lux/data/text/regex. - Moved lux/pipe to lux/control/pipe. - Moved the @pre and @post macros to lux/control/contract. - Improved error reporting for lux/type/auto. - Added a test for third-order type-checking for lux/type/auto. - Fixed a bug in the tests for lux/data/coll/vector.
* - Priority-queues and sequences can now be empty.Eduardo Julian2017-04-031-1/+1
|
* - Renamed lux/codata/* to lux/function/* and moved the ↵Eduardo Julian2017-04-031-6/+6
| | | | lux/codata/coll/stream to lux/data/coll/stream.
* - Implemented Int encoding/decoding in the standard library.Eduardo Julian2017-04-031-1/+1
| | | | | - Moved some type-constructors for building functor types into the lux/control/functor module. - Renamed Ord to Order. - Renamed Env to Reader.
* - Some refactorings, new types & functions, and moved the lux/effect module ↵Eduardo Julian2017-04-011-8/+8
| | | | to lux/control/effect.
* - Implemented ordered sets by means of red-black trees.Eduardo Julian2017-03-301-0/+1
|
* - Implemented finger-trees.Eduardo Julian2017-03-281-1/+3
| | | - Implemented random-access sequences and priority-queues on top of finger-trees.
* - Expanded the lux/control/interval module.Eduardo Julian2017-03-271-0/+1
| | | - Implemented Enum<Real>.
* - Moved lux/random to lux/math/random.Eduardo Julian2017-03-241-3/+3
| | | | - Moved lux/math/ratio to lux/number/ratio. - Moved lux/math/complex to lux/number/complex.
* - Added support for fuzzy logic.Eduardo Julian2017-01-281-1/+2
|
* - Changed the license from MPL 2.0 to MIT.Eduardo Julian2017-01-261-5/+0
|
* - Added thunks (lazy evaluation).Eduardo Julian2017-01-251-0/+1
|
* - Moved the lux/data/struct/* modules to lux/data/coll/*.Eduardo Julian2017-01-251-14/+14
| | | | | | | - Did the same for the lux/codata/struct/* modules. - Moved lux/codata/io to lux/io. - Moved lux/control/effect to lux/effect. - Renamed "sample" functions to "this" functions. - Renamed "at" functions to "nth" functions.
* - Added a module for continuous logic.Eduardo Julian2017-01-251-1/+2
|
* - Renamed lux/data/struct/tree to lux/data/struct/tree/rose.Eduardo Julian2017-01-251-3/+3
| | | | | | - Moved lux/data/struct/zipper to lux/data/struct/tree/zipper. - Moved lux/regex to lux/lexer/regex. - Changed the suffix of annotation tags, from M to A. - Renamed Frac(tional) numbers to Deg(rees).
* - Moved the template: macro to the lux module.Eduardo Julian2017-01-041-5/+4
|
* - Improved tests for lux/data/char, lux/host, lux/type/check.Eduardo Julian2016-12-191-3/+3
|
* - Improved the way tests are run.Eduardo Julian2016-12-191-1/+1
| | | - Refactored lux/regex tests a bit.
* - Fixed a bug in the way effect-handling worked.Eduardo Julian2016-12-181-1/+1
| | | - Added tests for lux/control/effect.