aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/math.lux (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-08-23The Python compiler can now be compiled by the new JVM compiler.Eduardo Julian1-35/+34
2021-08-18Some bug fixes.Eduardo Julian1-1/+1
2021-08-09Improved single-line comment syntax (from "##" to "...").Eduardo Julian1-8/+8
2021-08-08No more #export magic syntax.Eduardo Julian1-40/+42
2021-07-15Re-named "spec" hierarchy to "specification".Eduardo Julian1-0/+3
2021-07-14Normalized the hierarchy of the standard library modules.Eduardo Julian1-6/+7
2021-07-11Re-named ":coerce" to ":as" since it technically doesn't do coercions.Eduardo Julian1-14/+14
2021-06-24Added a macro for type-casting JVM objects.Eduardo Julian1-19/+20
2021-05-24Almost done with Scheme.Eduardo Julian1-0/+32
But will have to postpone finishing it because Kawa is not up to snuff.
2021-03-12Almost done with PHP.Eduardo Julian1-0/+32
2021-03-01Done with Ruby.Eduardo Julian1-1/+39
2021-02-10Continuing with LuaEduardo Julian1-0/+32
2021-01-26Made the Python being generated more compatible with both P2.7 and P3.Eduardo Julian1-5/+49
2020-12-29Moved "lux/data/number" to "lux/math/number".Eduardo Julian1-1/+1
2020-12-25Replaced kebab-case with snake_case for naming convention.Eduardo Julian1-3/+3
2020-12-01Added specialized root/2 and root/3 functions in lux/math.Eduardo Julian1-0/+6
2020-06-28The "for" macro can now work directly with definitions. No text literals ↵Eduardo Julian1-78/+78
necessary.
2019-09-14More fixes.Eduardo Julian1-2/+2
2019-07-26No more "n/"-prefixed functions.Eduardo Julian1-25/+3
2019-07-25No more "i/"-prefixed functions.Eduardo Julian1-2/+1
2019-07-24No more "f/"-prefixed functions.Eduardo Julian1-45/+50
+ No more "m/"-prefixed functions.
2019-06-15Array machinery for the JavaScript compiler.Eduardo Julian1-1/+25
2019-05-13More fiddling with types for JVM interop.Eduardo Julian1-2/+2
2019-04-27Re-named "lux/tool/compiler/host" to "lux/target".Eduardo Julian1-5/+3
2019-04-17Some adjustments of the stdlib for the new JVM compiler.Eduardo Julian1-25/+58
2019-03-30Re-named "do-template" to "template".Eduardo Julian1-8/+8
2018-07-30Now implementing math functionality in stdlib instead of the compiler.Eduardo Julian1-102/+13
2018-07-28Removed temporary "|" prefix on Nat.Eduardo Julian1-4/+4
2018-07-28Added "+" sign to positive Int.Eduardo Julian1-25/+25
2018-07-28Temporary commit to get rid of "+" signs for Nat.Eduardo Julian1-4/+4
2018-07-21Re-named "seq" to "and" and "alt" to "or".Eduardo Julian1-4/+4
2018-07-21Re-named "Symbol" to "Identifier".Eduardo Julian1-1/+1
2018-07-20"^open" and "open:" now use aliases instead of prefixes, the same way as ↵Eduardo Julian1-2/+2
module aliases.
2018-07-20No longer giving default aliases to un-prefixed imports.Eduardo Julian1-4/+5
2018-07-13Re-named "Bool" type to "Bit".Eduardo Julian1-1/+1
2018-07-11- Improvements to import syntax [part 2].Eduardo Julian1-9/+11
2018-07-11- Improvements to import syntax [part 1].Eduardo Julian1-20/+20
2018-07-10- Improvements to import syntax [part 0].Eduardo Julian1-1/+1
2018-07-10- Re-named path "lux/data/coll/*" to "lux/data/collection/*".Eduardo Julian1-1/+1
2018-07-04- Re-named "degree" to "revolution".Eduardo Julian1-1/+1
2018-05-13- Added new #I64 type as foundation for types based on 64-bit integers.Eduardo Julian1-1/+1
2018-05-02- Changed the syntax for the parameters of "syntax:".Eduardo Julian1-1/+1
2018-04-05- Improved the syntax for the "lux.function" macro.Eduardo Julian1-3/+3
2018-04-05- Implemented some math functions in pure Lux, to reduce the needs of the ↵Eduardo Julian1-14/+97
compiler, and make it easier to port Lux to new backends.
2018-02-24- Removed the "root2" and "root3" host procedures (their functionality is ↵Eduardo Julian1-5/+2
redundant, in the presence of the "pow" procedure).
2017-12-31- Added bit-sets.Eduardo Julian1-6/+2
2017-12-24- Minor refactorings and bug fixes.Eduardo Julian1-17/+27
2017-11-29- Changed the identifier separator, from the semi-colon (;) to the ↵Eduardo Julian1-28/+28
period/dot (.).
2017-11-27- Changed the prefixes of numeric functions.Eduardo Julian1-12/+12
2017-11-22- Fixed some bugs.Eduardo Julian1-9/+6
- Some refactoring. - Added some alternative snippets of code that new-luxc can handle better.