aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/concurrency/frp.lux (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-07-14Normalized the hierarchy of the standard library modules.Eduardo Julian1-295/+0
2021-06-30"signature:" -> "interface:" & "structure:" -> "implementation:"Eduardo Julian1-5/+5
"signature" & "structure" feel like very ML-specific terminology and might not be easy on programmers unfamiliar with it.
2021-05-18Got rid of the {}s in ":share" and made it pipe-able.Eduardo Julian1-5/+6
2020-12-25Replaced kebab-case with snake_case for naming convention.Eduardo Julian1-18/+18
2020-12-15Compiling "lux syntax char case!" with TABLESWITCH instead of LOOKUPSWITCH.Eduardo Julian1-1/+1
2020-12-02Re-named "::" and ":::" macros to "\" and "\\", to be consistent with the ↵Eduardo Julian1-6/+6
convention that only macros that deal with types may start with a colon.
2020-11-28Added "private" macro to lux/debug.Eduardo Julian1-7/+5
2020-11-05Lightweight machinery for agent-oriented programming.Eduardo Julian1-4/+13
2020-10-25Some improvements to the Lux syntax parser.Eduardo Julian1-14/+14
2020-05-17Local binding names for (co|indexed-)?monads are now explicitly set.Eduardo Julian1-6/+6
2020-05-17:share no longer relies on :assumeEduardo Julian1-8/+14
2020-05-12Now logging to a data-structure and only printing in the end.Eduardo Julian1-1/+1
2020-05-12Compiler versions are now natural numbers, and are included as part of the ↵Eduardo Julian1-8/+9
names/paths of artifacts.
2019-07-02Re-name "lux/data/error" to "lux/control/try".Eduardo Julian1-3/+3
2019-04-06Moved "lux/cli", "lux/io" and "lux/function" under "lux/control".Eduardo Julian1-2/+2
2019-04-06Created the "lux/abstract" branch and moved some modules into it.Eduardo Julian1-2/+3
2019-03-21Fixed a bug in the FRP/channel monad.Eduardo Julian1-45/+66
2019-03-15Changed the convention for the structure opening separator from "/" to ";", ↵Eduardo Julian1-6/+6
to avoid confusion since "/" is used for relative module paths.
2019-02-11Re-named "lux/control/concurrency/frp.Source" type to "Sink" to avoid ↵Eduardo Julian1-4/+4
conflict with "lux.Source".
2019-02-11Added the special # syntax for referring to the module's alias when opening ↵Eduardo Julian1-3/+3
structures.
2019-02-10Various small improments and changes.Eduardo Julian1-23/+29
2019-02-04Changed the naming style for structures.Eduardo Julian1-21/+21
2018-12-16Improved how the "Source" type works.Eduardo Julian1-74/+48
2018-12-15Reverted "lux/control/concurrency/frp" to the previous style of doing FRP.Eduardo Julian1-95/+241
2018-12-15Moved the "lux/concurrency" modules under "lux/control".Eduardo Julian1-0/+0
2018-12-15Small improvements.Eduardo Julian1-8/+6
2018-07-20"^open" and "open:" now use aliases instead of prefixes, the same way as ↵Eduardo Julian1-1/+1
module aliases.
2018-07-20No longer giving default aliases to un-prefixed imports.Eduardo Julian1-6/+9
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-1/+1
2018-07-10- Improvements to import syntax [part 0].Eduardo Julian1-6/+6
2018-07-10- Re-named path "lux/data/coll/*" to "lux/data/collection/*".Eduardo Julian1-1/+1
2018-07-10- Re-named "struct:" to "structure:".Eduardo Julian1-3/+3
2018-07-03- Re-named "@abstraction" to ":abstraction" and "@representation" to ↵Eduardo Julian1-3/+3
":representation".
2018-05-20- Re-named "Top" to "Any", and "Bottom" to "Nothing".Eduardo Julian1-6/+6
- Removed some modules that should have been deleted before.
2018-05-05- Removed Void and Unit as kinds of types.Eduardo Julian1-1/+1
- Changed the value of "unit" in the old LuxC to match the one in new-luxc.
2018-05-02- Re-named "Applicative" to "Apply".Eduardo Julian1-2/+2
2018-05-02- Moved the "wrap" function into Monad, and removed Applicative from Monad's ↵Eduardo Julian1-6/+6
family tree. - Moved the Free monad to its own module.
2018-04-05- Improved the syntax for the "lux.function" macro.Eduardo Julian1-3/+3
2018-01-30- Implemented semaphores, mutexes and barriers.Eduardo Julian1-7/+9
- Fixed a bug when checking "last-index-of" for Text.
2018-01-03- Small refactorings.Eduardo Julian1-1/+1
2017-12-12- FRP channels are no longer asynchronously-built lists, but rather mediums ↵Eduardo Julian1-279/+96
for spreading data, that can be chained together to form networks for data distribution.
2017-12-04- No longer deleting type-vars in luxc, to better match it with the ↵Eduardo Julian1-9/+8
type-checking in new-luxc. - Fixed some minor bugs and inconsistencies.
2017-12-02- Added context-sensitive macro-expansion by means of "lux in-module", and ↵Eduardo Julian1-1/+1
removed all the (now unnecessary) #hidden tags. - Fixed a bug when loading the imports from the cache. - Added special notation for context-sensitive macro-expansion.
2017-11-29- Changed the identifier separator, from the semi-colon (;) to the ↵Eduardo Julian1-113/+113
period/dot (.).
2017-11-27- Changed the prefixes of numeric functions.Eduardo Julian1-1/+1
2017-11-26- Changed to the new relative imports syntax.Eduardo Julian1-1/+1
2017-11-15- Re-named "lux/meta" to to "lux/macro".Eduardo Julian1-2/+2
2017-10-16- Re-named "Lux" type to "Meta".Eduardo Julian1-2/+2
- Moved lux/type/* under lux/meta/*.