GithubHelp home page GithubHelp logo

Comments (2)

trevor avatar trevor commented on July 24, 2024

This allows for Sets that contain numbers only, or strings only:

  clojure.lang.PersistentHashSet
  (encode [data]
    (java.util.HashSet. data))

  clojure.lang.PersistentTreeSet
  (encode [data]
    (java.util.TreeSet. data))

from clj-yaml.

trevor avatar trevor commented on July 24, 2024

… but this is better:

clojure.lang.IPersistentSet
(encode [data]
  (into #{}
    (map encode data)))

example (with modified fn's):

=> (println (yaml-dump ["y" #{"d" 'b/c :a 2 [3 4 {5 6 :x [7 #{}]}]} "m" nil "n"]))
---
- y
- !!set
  a: null
  2: null
  ? - 3
    - 4
    - 5: 6
      x:
      - 7
      - !!set {}
  : null
  d: null
  ? !!clojure.lang.Symbol
    name: c
    namespace: b
  : null
- m
- null
- n
...

from clj-yaml.

Related Issues (10)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.