2020-05-20 13:31:24 +03:00
|
|
|
Changes since Idris 2 v0.1.0
|
|
|
|
----------------------------
|
|
|
|
|
|
|
|
The implementation is now self-hosted. To initialise the build, either use
|
|
|
|
the [bootstrapping version of Idris2](https://github.com/edwinb/Idris2-boot)
|
2020-05-22 16:14:09 +03:00
|
|
|
or build from the generated Scheme, using `make bootstrap`.
|
2020-05-20 13:31:24 +03:00
|
|
|
|
2020-05-22 15:28:07 +03:00
|
|
|
Language changes:
|
2020-05-20 13:31:24 +03:00
|
|
|
|
2020-05-22 15:28:07 +03:00
|
|
|
* `total`, `covering` and `partial` flags on functions now have an effect.
|
2020-05-22 16:21:48 +03:00
|
|
|
* Fields of records can be accessed (and updated) using the dot syntax,
|
|
|
|
such as `r.field1.field2` or `record { field1.field2 = 42 }`.
|
|
|
|
For details, see https://idris2.readthedocs.io/en/latest/reference/records.html
|
2020-05-22 18:01:47 +03:00
|
|
|
* New function flag `%tcinline` which means that the function should be
|
|
|
|
inlined for the purposes of totality checking (but otherwise not inlined).
|
|
|
|
This can be used as a hint for totality checking, to make the checker look
|
|
|
|
inside functions that it otherwise might not.
|
2020-05-20 13:31:24 +03:00
|
|
|
* %transform directive, for declaring transformation rules on runtime
|
|
|
|
expressions. Transformation rules are automatically added for top level
|
|
|
|
implementations of interfaces.
|
|
|
|
* A %spec flag on functions which allows arguments to be marked for partial
|
|
|
|
evaluation, following the rules from "Scrapping Your Inefficient Engine"
|
|
|
|
(ICFP 2010, Brady & Hammond)
|
2020-05-22 21:26:10 +03:00
|
|
|
* To improve error messages, one can use `with NS.name <term>`
|
|
|
|
or `with [NS.name1, NS.name2, ...] <term>` to disable disambiguation
|
|
|
|
for the given names in `<term>`. Example: `with MyNS.(>>=) do ...`.
|
2020-05-20 13:31:24 +03:00
|
|
|
|
|
|
|
Library additions:
|
|
|
|
|
|
|
|
* Additional file management operations in `base`
|
2020-05-21 14:00:09 +03:00
|
|
|
* New module in `base` for time (`System.Clock`)
|
|
|
|
* New modules in `contrib` for JSON (`Language.JSON.*`); random numbers
|
|
|
|
(`System.Random`)
|
2020-05-20 13:31:24 +03:00
|
|
|
|
2020-05-22 16:21:48 +03:00
|
|
|
Compiler updates:
|
|
|
|
|
|
|
|
* Data types with a single constructor, with a single unerased arguments,
|
|
|
|
are translated to just that argument, to save repeated packing and unpacking.
|
|
|
|
(c.f. `newtype` in Haskell)
|
|
|
|
+ A data type can opt out of this behaviour by specifying `noNewtype` in its
|
|
|
|
options list. `noNewtype` allows code generators to apply special handling
|
|
|
|
to the generated constructor/deconstructor, for a newtype-like data type,
|
|
|
|
that would otherwise be optimised away.
|
|
|
|
* 0-multiplicity constructor arguments are now properly erased, not just
|
|
|
|
given a placeholder null value.
|
|
|
|
|
2020-05-20 13:31:24 +03:00
|
|
|
Other improvements:
|
|
|
|
|
|
|
|
* Various performance improvements in the typechecker:
|
|
|
|
+ Noting which metavariables are blocking unification constraints, so that
|
|
|
|
they only get retried if those metavariables make progress.
|
|
|
|
+ Evaluating `fromInteger` at compile time.
|
|
|
|
* Extend Idris2's literate mode to support reading Markdown and OrgMode files.
|
|
|
|
For more details see: https://idris2.readthedocs.io/en/latest/reference/literate.html
|
|
|
|
|
|
|
|
Changes since Idris 1
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
Everything :). For full details, see:
|
|
|
|
https://idris2.readthedocs.io/en/latest/updates/updates.html
|