Skip to content

Commit 07f017c

Browse files
committed
add copyright statements to src
1 parent b72b643 commit 07f017c

File tree

20 files changed

+160
-0
lines changed

20 files changed

+160
-0
lines changed

src/main/cljs/clojure/core/rrb_vector.cljs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.core.rrb-vector
210

311
"An implementation of the confluently persistent vector data

src/main/cljs/clojure/core/rrb_vector/debug.cljs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.core.rrb-vector.debug
210
(:require [clojure.core.rrb-vector :as fv]
311
[clojure.core.rrb-vector.rrbt :as rrbt]

src/main/cljs/clojure/core/rrb_vector/debug_platform_dependent.cljs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.core.rrb-vector.debug-platform-dependent
210
(:require [clojure.core.rrb-vector.rrbt :as rrbt]
311
[clojure.core.rrb-vector.nodes :refer [regular? node-ranges]]

src/main/cljs/clojure/core/rrb_vector/interop.cljs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.core.rrb-vector.interop
210
(:require [clojure.core.rrb-vector.protocols
311
:refer [PSliceableVector -slicev

src/main/cljs/clojure/core/rrb_vector/macros.clj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.core.rrb-vector.macros
210
(:refer-clojure :exclude [assert]))
311

src/main/cljs/clojure/core/rrb_vector/nodes.cljs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.core.rrb-vector.nodes
210
(:refer-clojure :exclude [clone]))
311

src/main/cljs/clojure/core/rrb_vector/protocols.cljs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.core.rrb-vector.protocols)
210

311
(defprotocol PSpliceableVector

src/main/cljs/clojure/core/rrb_vector/rrbt.cljs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.core.rrb-vector.rrbt
210
(:refer-clojure :exclude [array-for push-tail pop-tail new-path do-assoc])
311
(:require [clojure.core.rrb-vector.protocols

src/main/cljs/clojure/core/rrb_vector/transients.cljs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.core.rrb-vector.transients
210
(:refer-clojure :exclude [new-path])
311
(:require [clojure.core.rrb-vector.nodes

src/main/cljs/clojure/core/rrb_vector/trees.cljs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.core.rrb-vector.trees
210
(:refer-clojure :exclude [array-for push-tail pop-tail new-path do-assoc])
311
(:require [clojure.core.rrb-vector.nodes

0 commit comments

Comments
 (0)