From 7145202cbbed6abbcde167604e0e414d1479c8ad Mon Sep 17 00:00:00 2001 From: AlexKnauth Date: Tue, 5 Jan 2016 18:22:55 -0500 Subject: [PATCH] move join vector --- lens/private/compound/main.rkt | 2 -- lens/private/compound/main.scrbl | 2 -- lens/private/{compound => vector}/join-vector.rkt | 2 +- lens/private/{compound => vector}/join-vector.scrbl | 0 lens/private/vector/main.rkt | 1 + lens/private/vector/main.scrbl | 1 + lens/private/vector/pick.rkt | 1 + 7 files changed, 4 insertions(+), 5 deletions(-) rename lens/private/{compound => vector}/join-vector.rkt (96%) rename lens/private/{compound => vector}/join-vector.scrbl (100%) diff --git a/lens/private/compound/main.rkt b/lens/private/compound/main.rkt index 6a3c2a0..c080028 100644 --- a/lens/private/compound/main.rkt +++ b/lens/private/compound/main.rkt @@ -1,6 +1,4 @@ #lang reprovide "compose.rkt" "identity.rkt" -;"join-string.rkt" -"join-vector.rkt" "thrush.rkt" diff --git a/lens/private/compound/main.scrbl b/lens/private/compound/main.scrbl index c4bbb7a..6455888 100644 --- a/lens/private/compound/main.scrbl +++ b/lens/private/compound/main.scrbl @@ -6,5 +6,3 @@ @scribble-include/no-subsection["compose.scrbl"] @scribble-include/no-subsection["thrush.scrbl"] -@scribble-include/no-subsection["join-vector.scrbl"] -@;scribble-include/no-subsection["join-string.scrbl"] diff --git a/lens/private/compound/join-vector.rkt b/lens/private/vector/join-vector.rkt similarity index 96% rename from lens/private/compound/join-vector.rkt rename to lens/private/vector/join-vector.rkt index cdeb799..f5ae7ca 100644 --- a/lens/private/compound/join-vector.rkt +++ b/lens/private/vector/join-vector.rkt @@ -5,7 +5,7 @@ require racket/contract "../base/main.rkt" "../util/immutable.rkt" "../util/rest-contract.rkt" - "compose.rkt" + "../compound/compose.rkt" "../list/join-list.rkt" module+ test diff --git a/lens/private/compound/join-vector.scrbl b/lens/private/vector/join-vector.scrbl similarity index 100% rename from lens/private/compound/join-vector.scrbl rename to lens/private/vector/join-vector.scrbl diff --git a/lens/private/vector/main.rkt b/lens/private/vector/main.rkt index 678fed5..9c27408 100644 --- a/lens/private/vector/main.rkt +++ b/lens/private/vector/main.rkt @@ -2,3 +2,4 @@ "nested.rkt" "pick.rkt" "ref.rkt" +"join-vector.rkt" diff --git a/lens/private/vector/main.scrbl b/lens/private/vector/main.scrbl index b83e20c..d410d3a 100644 --- a/lens/private/vector/main.scrbl +++ b/lens/private/vector/main.scrbl @@ -7,3 +7,4 @@ @scribble-include/no-subsection["ref.scrbl"] @scribble-include/no-subsection["nested.scrbl"] @scribble-include/no-subsection["pick.scrbl"] +@scribble-include/no-subsection["join-vector.scrbl"] diff --git a/lens/private/vector/pick.rkt b/lens/private/vector/pick.rkt index 442dd68..1e64ebf 100644 --- a/lens/private/vector/pick.rkt +++ b/lens/private/vector/pick.rkt @@ -5,6 +5,7 @@ "../compound/main.rkt" "../util/immutable.rkt" "../util/rest-contract.rkt" + "../vector/join-vector.rkt" "ref.rkt") (module+ test