module Indexation.Functions where import Indexation.Prelude import Indexation.Types import Indexation.Instances () import qualified Data.Vector as Vector import qualified Data.HashMap.Strict as HashMap import qualified Data.Vector.Unboxed as UnboxedVector import qualified Indexation.Utils.UnboxedVector as UnboxedVector import qualified Indexation.Utils.Unfoldr as Unfoldr lookupEntity :: Index entity -> EntityTable entity -> Maybe entity lookupEntity (Index indexPrim) (EntityTable vector) = vector Vector.!? indexPrim lookupIndex :: (Eq entity, Hashable entity) => entity -> IndexTable entity -> Maybe (Index entity) lookupIndex entity (IndexTable _ hashMap) = fmap Index (HashMap.lookup entity hashMap) createIndexSet :: (Eq entity, Hashable entity, Foldable foldable) => IndexTable entity -> foldable entity -> IndexSet entity createIndexSet (IndexTable size map) entities = IndexSet (UnboxedVector.filledIndicesFoldable size (Unfoldr.hashMapValuesByKeys entities map)) lookupInIndexSet :: Index entity -> IndexSet entity -> Bool lookupInIndexSet (Index indexInt) (IndexSet vec) = vec UnboxedVector.!? indexInt & fromMaybe False