aztecs-0.12.0: A modular game engine and Entity-Component-System (ECS) for Haskell.
Copyright(c) Matt Hunzinger 2025
LicenseBSD-style (see the LICENSE file in the distribution)
Maintainermatt@hunzinger.me
Stabilityprovisional
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Aztecs.ECS.World.Storage.Dynamic

Description

 
Synopsis

Documentation

data DynamicStorage Source #

Dynamic storage of components.

Since: 0.9

Constructors

DynamicStorage 

Fields

Instances

Instances details
Show DynamicStorage Source #

Since: 0.9

Instance details

Defined in Aztecs.ECS.World.Storage.Dynamic

dynStorage :: forall a s. Storage a s => s -> DynamicStorage Source #

Create a dynamic storage from a storage.

Since: 0.9

singletonDyn :: Dynamic -> DynamicStorage -> DynamicStorage Source #

Singleton dynamic storage.

Since: 0.9

fromAscListDyn :: [Dynamic] -> DynamicStorage -> DynamicStorage Source #

Convert from an ascending list.

Since: 0.9

toAscListDyn :: DynamicStorage -> [Dynamic] Source #

Convert this storage to an ascending list.

Since: 0.9