Skip to content

Commit

Permalink
Adds File system library.
Browse files Browse the repository at this point in the history
  • Loading branch information
Izaakwltn committed May 9, 2024
1 parent 52f90fb commit 4cd1d57
Show file tree
Hide file tree
Showing 8 changed files with 915 additions and 12 deletions.
4 changes: 3 additions & 1 deletion coalton.asd
Expand Up @@ -182,6 +182,7 @@
(:file "monad/free")
(:file "seq")
(:file "system")
(:file "file")
(:file "prelude")))

(when (member (getenv "COALTON_PORTABLE_BIGFLOAT") '("1" "true" "t") :test 'equalp)
Expand Down Expand Up @@ -341,4 +342,5 @@
(:file "seq-tests")
(:file "unused-variables")
(:file "pattern-matching-tests")
(:file "looping-native-tests")))
(:file "looping-native-tests")
(:file "file-tests")))
3 changes: 2 additions & 1 deletion library/classes.lisp
Expand Up @@ -35,6 +35,7 @@
#:Into
#:TryInto
#:Iso
#:Signalable
#:error
#:Unwrappable #:unwrap-or-else #:with-default #:unwrap #:expect #:as-optional
#:default #:defaulting-unwrap))
Expand Down Expand Up @@ -284,7 +285,7 @@
;;
;; Unwrappable for fallible unboxing
;;

(define-class (Unwrappable :container)
"Containers which can be unwrapped to get access to their contents.
Expand Down

0 comments on commit 4cd1d57

Please sign in to comment.