You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
;; all read/write functions take optional handlers
44
-
(fress/write x :handlers my-handlers)
45
-
46
-
Other options are available. Refer to the [API Documentation](http://clojure.github.com/data.fressian/) for details.
40
+
;; create reader/write on input/output streams
41
+
(fress/create-reader is)
42
+
(fress/create-writer os)
43
+
```
47
44
45
+
It is also possible to create custom tags and handlers. For more information see [Creating custom handlers](https://github.com/clojure/data.fressian/wiki/Creating-custom-handlers) for details.
0 commit comments