implemented posSearchExact

This commit is contained in:
Jonathan Lamothe
2020-02-12 00:27:28 -05:00
parent 25e4929f0b
commit a2968595d8
2 changed files with 22 additions and 1 deletions

View File

@@ -54,7 +54,12 @@ posSearchExact
-- ^ The database
-> Maybe Int
-- ^ The index of the result (or 'Nothing' if not found)
posSearchExact = undefined
posSearchExact sStr db = case filter sFunc $ zip [0..] ps of
[] -> Nothing
(n,_):_ -> Just n
where
sFunc (_, pos) = sStr == pos
ps = getPositions db
-- | Builds a callback function for when a 'Player' position is
-- selected