This website requires JavaScript.
Explore
Help
Sign In
anoma
/
juvix
Watch
1
Star
1
Fork
0
You've already forked juvix
mirror of
https://github.com/anoma/juvix.git
synced
2025-01-08 16:51:53 +03:00
Code
Issues
Projects
Releases
Wiki
Activity
c9b8cdd5e9
juvix
/
tests
/
positive
/
Reachability
/
Data
/
Maybe.juvix
8 lines
105 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Compute name dependency graph and filter unreachable definitions (#1408) * Compute name dependency graph and filter unreachable declarations * bugfix: recurse into type signatures * positive tests * make ormolu happy * get starting nodes from ExportInfo * make ormolu happy * cosmetic refactoring of DependencyInfo * fix tests & style
2022-07-25 19:38:44 +03:00
module Data.Maybe;
Change syntax for ind. data types and forbid the empty data type (#1684) Closes #1644 #1635
2023-01-03 15:49:04 +03:00
type Maybe (a : Type) :=
nothing : Maybe a |
Compute name dependency graph and filter unreachable definitions (#1408) * Compute name dependency graph and filter unreachable declarations * bugfix: recurse into type signatures * positive tests * make ormolu happy * get starting nodes from ExportInfo * make ormolu happy * cosmetic refactoring of DependencyInfo * fix tests & style
2022-07-25 19:38:44 +03:00
just : a → Maybe a;
end;
Reference in New Issue
Copy Permalink