apecs-0.3.0.1: A fast ECS for game engine programming

Safe HaskellNone
LanguageHaskell2010

Apecs.Concurrent

Synopsis

Documentation

concurrently :: [System w ()] -> System w () Source #

Executes a list of systems concurrently, and blocks until all have finished. Provides zero protection against race conditions and other hazards, so use with caution.

pmap Source #

Arguments

:: (Has w y, Has w x) 
=> Int

Entities per thread

-> (x -> y) 
-> System w () 

Parallel version of cmap.