Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2018-06-17 | - Migrated Scheme back-end to stdlib. | Eduardo Julian | 1 | -3/+3 | |
2018-05-20 | - Re-named "Top" to "Any", and "Bottom" to "Nothing". | Eduardo Julian | 1 | -3/+3 | |
- Removed some modules that should have been deleted before. | |||||
2018-05-13 | - Re-named ".../eq" modules to ".../equality". | Eduardo Julian | 1 | -1/+1 | |
- Other minor improvements. | |||||
2018-05-13 | - Added new #I64 type as foundation for types based on 64-bit integers. | Eduardo Julian | 1 | -79/+79 | |
2018-05-07 | - Implemented Deg functionality in pure Lux. | Eduardo Julian | 1 | -5/+5 | |
2018-05-06 | - Implemented Nat functionality in pure Lux. | Eduardo Julian | 1 | -1/+1 | |
2018-05-06 | - Re-named shift-left -> left-shift, shift-right -> logical-right-shift, ↵ | Eduardo Julian | 1 | -5/+5 | |
signed-shift-right -> arithmetic-right-shift. | |||||
2018-05-06 | - Removed "lux text upper" and "lux text lower" procedures. | Eduardo Julian | 1 | -40/+149 | |
2018-05-01 | - Allow underscore separators in the hex, octal and binary encoding macros ↵ | Eduardo Julian | 1 | -29/+60 | |
for Nat/Int/Deg/Frac. | |||||
2017-11-29 | - Changed the identifier separator, from the semi-colon (;) to the ↵ | Eduardo Julian | 1 | -109/+109 | |
period/dot (.). | |||||
2017-11-28 | - Re-named the "." function to "compose" and moved it to lux/function. | Eduardo Julian | 1 | -1/+1 | |
2017-11-27 | - Got rid of even more dots. | Eduardo Julian | 1 | -1/+1 | |
2017-11-27 | - Changed the prefixes of numeric functions. | Eduardo Julian | 1 | -168/+168 | |
2017-11-22 | - Fixed some bugs. | Eduardo Julian | 1 | -39/+39 | |
- Some refactoring. - Added some alternative snippets of code that new-luxc can handle better. | |||||
2017-11-21 | - Fixed some bugs. | Eduardo Julian | 1 | -11/+10 | |
- Some small refactoring. | |||||
2017-11-14 | - Made "lux text clip" work like it used to. | Eduardo Julian | 1 | -31/+35 | |
2017-11-14 | - Removed "lux text last-index" procedure. | Eduardo Julian | 1 | -35/+31 | |
- Removed "lux text trim" procedure. - Modified "lux text clip" procedure. - Some bug fixes. | |||||
2017-11-13 | - Type-vars no longer get deleted. | Eduardo Julian | 1 | -36/+36 | |
- Fixed some bugs. | |||||
2017-11-06 | - Changed how Lux procedures work on the old compiler and the stdlib. | Eduardo Julian | 1 | -103/+97 | |
2017-10-16 | - Re-named "Result" type back to "Error". | Eduardo Julian | 1 | -37/+37 | |
2017-10-16 | - Moved Array type to lux.lux. | Eduardo Julian | 1 | -1/+1 | |
- Re-named some array functions. - Minor refactorings. | |||||
2017-10-11 | - Added monoid composition. | Eduardo Julian | 1 | -1/+1 | |
2017-09-19 | - Changed the terminology of monoids ("append" -> "compose", "unit" -> ↵ | Eduardo Julian | 1 | -3/+3 | |
"identity"). | |||||
2017-09-19 | - Some refactoring. | Eduardo Julian | 1 | -21/+22 | |
- Moved "assume" and "default" to lux/data/maybe. | |||||
2017-09-05 | - Renamed bitwise right-shifting functions. | Eduardo Julian | 1 | -1/+1 | |
2017-09-04 | - Re-named "real" numbers to "frac"(tions). | Eduardo Julian | 1 | -78/+78 | |
2017-07-15 | - Can now generate Eq instances for #rec-style recursive types. | Eduardo Julian | 1 | -1/+1 | |
- Minor refactorings. | |||||
2017-07-02 | - Lux no longer has a Char primitive data-type. | Eduardo Julian | 1 | -32/+22 | |
2017-06-19 | - Codecs no longer take into account underscore "_" separators for digits.. | Eduardo Julian | 1 | -5/+0 | |
2017-05-24 | - Renamed ^=> to ^multi. | Eduardo Julian | 1 | -11/+11 | |
2017-05-23 | - Implemented Real<->Bits conversion (and used it to implement Hash<Real>). | Eduardo Julian | 1 | -52/+126 | |
2017-05-17 | - Renamed "Error" to "Result". | Eduardo Julian | 1 | -38/+38 | |
2017-05-11 | - Fixed bugs with octal and hexadecimal encodings for reals. | Eduardo Julian | 1 | -11/+19 | |
2017-05-09 | - Fixed some tests for lux/math/logic/fuzzy. | Eduardo Julian | 1 | -0/+4 | |
- Removed a forgotten #seed in a test for lux/math/simple. - Added Hash<Deg>. | |||||
2017-05-07 | - Removed "T" suffix from Type's tags. | Eduardo Julian | 1 | -1/+1 | |
2017-05-07 | - Fully implemented Deg encoding/decoding in pure Lux. | Eduardo Julian | 1 | -37/+91 | |
- No longer relying in LuxRT-supported implementations. | |||||
2017-05-05 | - Implemented Deg encoding. | Eduardo Julian | 1 | -9/+170 | |
2017-05-03 | - Removed the "S" suffix from AST tags. | Eduardo Julian | 1 | -5/+5 | |
2017-04-12 | - Simplified some of the documentation and error messages. | Eduardo Julian | 1 | -2/+2 | |
2017-04-06 | - Added binary, octal and hexadecimal codecs for reals. | Eduardo Julian | 1 | -15/+258 | |
- Added octal codec for degs. | |||||
2017-04-05 | - Added binary and hexadecimal syntax for degs. | Eduardo Julian | 1 | -3/+39 | |
2017-04-05 | - Added binary, octal and hexadecimal codecs for ints. | Eduardo Julian | 1 | -132/+110 | |
- Generalized the bin, oct and hex macros so they also work with ints (in the future, they will also work with degs and reals). - Binary, octal and hexadecimal nats now have a + sign in front, like normal nats. | |||||
2017-04-03 | - Implemented Int encoding/decoding in the standard library. | Eduardo Julian | 1 | -14/+52 | |
- Moved some type-constructors for building functor types into the lux/control/functor module. - Renamed Ord to Order. - Renamed Env to Reader. | |||||
2017-03-30 | - Nat encoding/decoding is now implemented in the standard library. | Eduardo Julian | 1 | -1/+54 | |
2017-03-28 | - Implemented finger-trees. | Eduardo Julian | 1 | -1/+1 | |
- Implemented random-access sequences and priority-queues on top of finger-trees. | |||||
2017-03-27 | - Expanded the lux/control/interval module. | Eduardo Julian | 1 | -6/+9 | |
- Implemented Enum<Real>. | |||||
2017-02-22 | - Implemented a variety of new procedures for text, chars, math and arrays. | Eduardo Julian | 1 | -1/+2 | |
2017-02-17 | - Added support for the new common procedures to the JVM backend. | Eduardo Julian | 1 | -2/+2 | |
- Fixed some bugs. | |||||
2017-02-17 | - Added more common procedures. | Eduardo Julian | 1 | -8/+34 | |
- Fixed some bugs in the type-checking of some common procedures. - Removed the "_name" field for generated classes. - Now compiling loops in JS. - Did some refactoring to the caching machinery. - Implemented binary, octal and hexadecimal encoding purely in Lux. | |||||
2017-02-16 | - Implemented several new procedures. | Eduardo Julian | 1 | -65/+40 | |
- Improved Lux-to-JS interactions. - Parallel compilation works for the JS backend. - Added more primitive functionality to the JS runtime. - More common procedures. |