aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Helper.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-08-13 10:53:23 +0200
committerMarvin Borner2022-08-13 11:48:03 +0200
commitcf76a2e33b708dd2bec72a782af214cbd792bb58 (patch)
tree754d02388abf1365c8282f46af2065095d43ae2f /src/Helper.hs
parentcbc9a382e356951896a21f80f52e0e5b3e8c4e1f (diff)
Minor improvements
Diffstat (limited to 'src/Helper.hs')
-rw-r--r--src/Helper.hs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Helper.hs b/src/Helper.hs
index eb41673..47c106d 100644
--- a/src/Helper.hs
+++ b/src/Helper.hs
@@ -178,6 +178,15 @@ decodeStdout e = do
---
+lookupValues :: (Eq b) => b -> [(a, b)] -> [a]
+lookupValues _ [] = []
+lookupValues key ((x, y) : xys) | key == y = x : lookupValues key xys
+ | otherwise = lookupValues key xys
+
+matchingFunctions :: Expression -> Environment -> String
+matchingFunctions e (Environment env) =
+ intercalate ", " $ nub $ lookupValues e (map fst env)
+
-- TODO: Expression -> Maybe Char is missing
maybeHumanifyExpression :: Expression -> Maybe String
maybeHumanifyExpression e = ternaryToDecimal e <|> decodeStdout e