|
Java example source code file (data.clj)
The data.clj Java example source code; Copyright (c) Rich Hickey. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. ; You must not remove this notice, or any other, from this software. (ns clojure.test-clojure.data (:use clojure.data clojure.test) (import java.util.HashSet)) (deftest diff-test (are [d x y] (= d (diff x y)) [nil nil nil] nil nil [1 2 nil] 1 2 [nil nil [1 2 3]] [1 2 3] '(1 2 3) [1 [:a :b] nil] 1 [:a :b] [{:a 1} :b nil] {:a 1} :b [:team #{:p1 :p2} nil] :team #{:p1 :p2} [{0 :a} [:a] nil] {0 :a} [:a] [nil [nil 2] [1]] [1] [1 2] [nil nil [1 2]] [1 2] (into-array [1 2]) [#{:a} #{:b} #{:c :d}] #{:a :c :d} #{:b :c :d} [nil nil {:a 1}] {:a 1} {:a 1} [{:a #{2}} {:a #{4}} {:a #{3}}] {:a #{2 3}} {:a #{3 4}} [#{1} #{3} #{2}] (HashSet. [1 2]) (HashSet. [2 3]) [nil nil [1 2]] [1 2] (into-array [1 2]) [nil nil [1 2]] (into-array [1 2]) [1 2] [{:a {:c [1]}} {:a {:c [0]}} {:a {:c [nil 2] :b 1}}] {:a {:b 1 :c [1 2]}} {:a {:b 1 :c [0 2]}} [{:a nil} {:a false} {:b nil :c false}] {:a nil :b nil :c false} {:a false :b nil :c false})) Other Java examples (source code examples)Here is a short list of links related to this Java data.clj source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.