reinforce-0.0.0.1: Reinforcement learning in Haskell

Copyright(c) Sentenai 2017
LicenseBSD3
Maintainersam@sentenai.com
Stabilityexperimental
Portabilitynon-portable
Safe HaskellNone
LanguageHaskell2010

Reinforce.Prelude

Description

Re-exports of common functions and newer functions

Synopsis

Documentation

whileM_ :: forall m a. Monad m => m Bool -> m a -> m () Source #

A monadic while loop

head :: [a] -> Maybe a Source #

a safer head with something safer

unsafeHead :: [a] -> a Source #

Prelude's head - for capatability.