summaryrefslogtreecommitdiff
path: root/src/test/java/bjc
diff options
context:
space:
mode:
authorBen Culkin <scorpress@gmail.com>2022-10-08 14:47:21 -0400
committerBen Culkin <scorpress@gmail.com>2022-10-08 14:47:21 -0400
commit0f958b08b3446a866418aa485bb60c208d952033 (patch)
tree2a54b64036bacb2f1fbc60d17511eb904b15fe7d /src/test/java/bjc
parent08885862bee89602d7edc55144ea9b6af780bfa4 (diff)
Add a whole bunch of Optics
This adds a whole bunch of types/functions related to optics. With this batch, I've mainly gone for the concrete representation types, instead of var Laarhoven or profunctor representations. The concrete ones require less infrastructure, though they are not as easy to compose There's also a number of misc. things in here
Diffstat (limited to 'src/test/java/bjc')
-rw-r--r--src/test/java/bjc/test/functypes/optics/LensesTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/java/bjc/test/functypes/optics/LensesTest.java b/src/test/java/bjc/test/functypes/optics/LensesTest.java
index ff13a42..c431c2f 100644
--- a/src/test/java/bjc/test/functypes/optics/LensesTest.java
+++ b/src/test/java/bjc/test/functypes/optics/LensesTest.java
@@ -5,7 +5,7 @@ import static org.junit.Assert.*;
import org.junit.Test;
import bjc.data.Holder;
-import bjc.functypes.optics.Lenses;
+import bjc.optics.Lenses;
public class LensesTest {