summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--FinMap.agda2
1 files changed, 1 insertions, 1 deletions
diff --git a/FinMap.agda b/FinMap.agda
index b2db8f4..c8b078c 100644
--- a/FinMap.agda
+++ b/FinMap.agda
@@ -38,7 +38,7 @@ fromAscList [] = empty
fromAscList ((f , a) ∷ xs) = insert f a (fromAscList xs)
fromFunc : {A : Set} {n : ℕ} → (Fin n → A) → FinMapMaybe n A
-fromFunc = tabulate ∘ _∘_ just
+fromFunc = tabulate ∘ _∘_ Maybe.just
reshape : {n : ℕ} {A : Set} → FinMapMaybe n A → (l : ℕ) → FinMapMaybe l A
reshape m zero = []