LambdaHack-0.11.0.0: A game engine library for tactical squad ASCII roguelike dungeon crawlers
Safe HaskellSafe-Inferred
LanguageHaskell2010

Game.LambdaHack.Core.Prelude

Description

Custom Prelude, compatible across many GHC versions.

Synopsis

Documentation

(++) :: [a] -> [a] -> [a] infixr 5 Source #

Append two lists, i.e.,

[x1, ..., xm] ++ [y1, ..., yn] == [x1, ..., xm, y1, ..., yn]
[x1, ..., xm] ++ [y1, ...] == [x1, ..., xm, y1, ...]

If the first list is not finite, the result is the first list.

seq :: forall {r :: RuntimeRep} a (b :: TYPE r). a -> b -> b infixr 0 Source #

The value of seq a b is bottom if a is bottom, and otherwise equal to b. In other words, it evaluates the first argument a to weak head normal form (WHNF). seq is usually introduced to improve performance by avoiding unneeded laziness.

A note on evaluation order: the expression seq a b does not guarantee that a will be evaluated before b. The only guarantee given by seq is that the both a and b will be evaluated before seq returns a value. In particular, this means that b may be evaluated before a. If you need to guarantee a specific order of evaluation, you must use the function pseq from the "parallel" package.

filter :: (a -> Bool) -> [a] -> [a] Source #

\(\mathcal{O}(n)\). filter, applied to a predicate and a list, returns the list of those elements that satisfy the predicate; i.e.,

filter p xs = [ x | x <- xs, p x]
>>> filter odd [1, 2, 3]
[1,3]

zip :: [a] -> [b] -> [(a, b)] Source #

\(\mathcal{O}(\min(m,n))\). zip takes two lists and returns a list of corresponding pairs.

>>> zip [1, 2] ['a', 'b']
[(1, 'a'), (2, 'b')]

If one input list is shorter than the other, excess elements of the longer list are discarded, even if one of the lists is infinite:

>>> zip [1] ['a', 'b']
[(1, 'a')]
>>> zip [1, 2] ['a']
[(1, 'a')]
>>> zip [] [1..]
[]
>>> zip [1..] []
[]

zip is right-lazy:

>>> zip [] _|_
[]
>>> zip _|_ []
_|_

zip is capable of list fusion, but it is restricted to its first list argument and its resulting list.

print :: Show a => a -> IO () Source #

The print function outputs a value of any printable type to the standard output device. Printable types are those that are instances of class Show; print converts values to strings for output using the show operation and adds a newline.

For example, a program to print the first 20 integers and their powers of 2 could be written as:

main = print ([(n, 2^n) | n <- [0..19]])

fst :: (a, b) -> a Source #

Extract the first component of a pair.

snd :: (a, b) -> b Source #

Extract the second component of a pair.

otherwise :: Bool Source #

otherwise is defined as the value True. It helps to make guards more readable. eg.

 f x | x < 0     = ...
     | otherwise = ...

map :: (a -> b) -> [a] -> [b] Source #

\(\mathcal{O}(n)\). map f xs is the list obtained by applying f to each element of xs, i.e.,

map f [x1, x2, ..., xn] == [f x1, f x2, ..., f xn]
map f [x1, x2, ...] == [f x1, f x2, ...]
>>> map (+1) [1, 2, 3]
[2,3,4]

($) :: forall (r :: RuntimeRep) a (b :: TYPE r). (a -> b) -> a -> b infixr 0 Source #

Application operator. This operator is redundant, since ordinary application (f x) means the same as (f $ x). However, $ has low, right-associative binding precedence, so it sometimes allows parentheses to be omitted; for example:

f $ g $ h x  =  f (g (h x))

It is also useful in higher-order situations, such as map ($ 0) xs, or zipWith ($) fs xs.

Note that ($) is levity-polymorphic in its result type, so that foo $ True where foo :: Bool -> Int# is well-typed.

realToFrac :: (Real a, Fractional b) => a -> b Source #

general coercion to fractional types

class Bounded a where Source #

The Bounded class is used to name the upper and lower limits of a type. Ord is not a superclass of Bounded since types that are not totally ordered may also have upper and lower bounds.

The Bounded class may be derived for any enumeration type; minBound is the first constructor listed in the data declaration and maxBound is the last. Bounded may also be derived for single-constructor datatypes whose constituent types are in Bounded.

Methods

minBound :: a Source #

maxBound :: a Source #

Instances

Instances details
Bounded DetailLevel Source # 
Instance details

Defined in Game.LambdaHack.Client.UI.EffectDescription

Bounded MsgClassDistinct Source # 
Instance details

Defined in Game.LambdaHack.Client.UI.Msg

Bounded MsgClassIgnore Source # 
Instance details

Defined in Game.LambdaHack.Client.UI.Msg

Bounded MsgClassSave Source # 
Instance details

Defined in Game.LambdaHack.Client.UI.Msg

Bounded MsgClassShow Source # 
Instance details

Defined in Game.LambdaHack.Client.UI.Msg

Bounded MsgClassShowAndSave Source # 
Instance details

Defined in Game.LambdaHack.Client.UI.Msg

Bounded Outcome Source # 
Instance details

Defined in Game.LambdaHack.Content.FactionKind

Bounded Doctrine Source # 
Instance details

Defined in Game.LambdaHack.Definition.Ability

Bounded EqpSlot Source # 
Instance details

Defined in Game.LambdaHack.Definition.Ability

Bounded Flag Source # 
Instance details

Defined in Game.LambdaHack.Definition.Ability

Bounded Skill Source # 
Instance details

Defined in Game.LambdaHack.Definition.Ability

Bounded Highlight Source # 
Instance details

Defined in Game.LambdaHack.Definition.Color

Bounded CStore Source # 
Instance details

Defined in Game.LambdaHack.Definition.Defs

Bounded SLore Source # 
Instance details

Defined in Game.LambdaHack.Definition.Defs

Bounded FancyName Source # 
Instance details

Defined in Game.LambdaHack.Definition.Flavour

Bounded BlinkSpeed 
Instance details

Defined in System.Console.ANSI.Types

Bounded Color 
Instance details

Defined in System.Console.ANSI.Types

Bounded ColorIntensity 
Instance details

Defined in System.Console.ANSI.Types

Bounded ConsoleIntensity 
Instance details

Defined in System.Console.ANSI.Types

Bounded ConsoleLayer 
Instance details

Defined in System.Console.ANSI.Types

Bounded Underlining 
Instance details

Defined in System.Console.ANSI.Types

Bounded All

Since: base-2.1

Instance details

Defined in Data.Semigroup.Internal

Bounded Any

Since: base-2.1

Instance details

Defined in Data.Semigroup.Internal

Bounded CBool 
Instance details

Defined in Foreign.C.Types

Bounded CChar 
Instance details

Defined in Foreign.C.Types

Bounded CInt 
Instance details

Defined in Foreign.C.Types

Bounded CIntMax 
Instance details

Defined in Foreign.C.Types

Bounded CIntPtr 
Instance details

Defined in Foreign.C.Types

Bounded CLLong 
Instance details

Defined in Foreign.C.Types

Bounded CLong 
Instance details

Defined in Foreign.C.Types

Bounded CPtrdiff 
Instance details

Defined in Foreign.C.Types

Bounded CSChar 
Instance details

Defined in Foreign.C.Types

Bounded CShort 
Instance details

Defined in Foreign.C.Types

Bounded CSigAtomic 
Instance details

Defined in Foreign.C.Types

Bounded CSize 
Instance details

Defined in Foreign.C.Types

Bounded CUChar 
Instance details

Defined in Foreign.C.Types

Bounded CUInt 
Instance details

Defined in Foreign.C.Types

Bounded CUIntMax 
Instance details

Defined in Foreign.C.Types

Bounded CUIntPtr 
Instance details

Defined in Foreign.C.Types

Bounded CULLong 
Instance details

Defined in Foreign.C.Types

Bounded CULong 
Instance details

Defined in Foreign.C.Types

Bounded CUShort 
Instance details

Defined in Foreign.C.Types

Bounded CWchar 
Instance details

Defined in Foreign.C.Types

Bounded IntPtr 
Instance details

Defined in Foreign.Ptr

Bounded WordPtr 
Instance details

Defined in Foreign.Ptr

Bounded Associativity

Since: base-4.9.0.0

Instance details

Defined in GHC.Generics

Bounded DecidedStrictness

Since: base-4.9.0.0

Instance details

Defined in GHC.Generics

Bounded SourceStrictness

Since: base-4.9.0.0

Instance details

Defined in GHC.Generics

Bounded SourceUnpackedness

Since: base-4.9.0.0

Instance details

Defined in GHC.Generics

Bounded Int16

Since: base-2.1

Instance details

Defined in GHC.Int

Bounded Int32

Since: base-2.1

Instance details

Defined in GHC.Int

Bounded Int64

Since: base-2.1

Instance details

Defined in GHC.Int

Bounded Int8

Since: base-2.1

Instance details

Defined in GHC.Int

Bounded GeneralCategory

Since: base-2.1

Instance details

Defined in GHC.Unicode

Bounded Word16

Since: base-2.1

Instance details

Defined in GHC.Word

Bounded Word32

Since: base-2.1

Instance details

Defined in GHC.Word

Bounded Word64

Since: base-2.1

Instance details

Defined in GHC.Word

Bounded FileType 
Instance details

Defined in System.Directory.Internal.Common

Bounded XdgDirectory 
Instance details

Defined in System.Directory.Internal.Common

Bounded XdgDirectoryList 
Instance details

Defined in System.Directory.Internal.Common

Bounded Extension 
Instance details

Defined in GHC.LanguageExtensions.Type

Bounded Ordering

Since: base-2.1

Instance details

Defined in GHC.Enum

Bounded AudioDeviceStatus 
Instance details

Defined in SDL.Audio

Bounded AudioDeviceUsage 
Instance details

Defined in SDL.Audio

Bounded Channels 
Instance details

Defined in SDL.Audio

Bounded LockState 
Instance details

Defined in SDL.Audio

Bounded PlaybackState 
Instance details

Defined in SDL.Audio

Bounded InputMotion 
Instance details

Defined in SDL.Event

Bounded AccelerometerJoystickOptions 
Instance details

Defined in SDL.Hint

Bounded FramebufferAccelerationOptions 
Instance details

Defined in SDL.Hint

Bounded HintPriority 
Instance details

Defined in SDL.Hint

Bounded MacCTRLClickOptions 
Instance details

Defined in SDL.Hint

Bounded MouseModeWarpOptions 
Instance details

Defined in SDL.Hint

Bounded RenderDrivers 
Instance details

Defined in SDL.Hint

Bounded RenderOpenGLShaderOptions 
Instance details

Defined in SDL.Hint

Bounded RenderScaleQuality 
Instance details

Defined in SDL.Hint

Bounded RenderVSyncOptions 
Instance details

Defined in SDL.Hint

Bounded VideoWinD3DCompilerOptions 
Instance details

Defined in SDL.Hint

Bounded InitFlag 
Instance details

Defined in SDL.Init

Bounded Keycode 
Instance details

Defined in SDL.Input.Keyboard.Codes

Bounded Scancode 
Instance details

Defined in SDL.Input.Keyboard.Codes

Bounded LocationMode 
Instance details

Defined in SDL.Input.Mouse

Bounded MouseScrollDirection 
Instance details

Defined in SDL.Input.Mouse

Bounded BatteryState 
Instance details

Defined in SDL.Power

Bounded MessageKind 
Instance details

Defined in SDL.Video

Bounded WindowMode 
Instance details

Defined in SDL.Video

Bounded Mode 
Instance details

Defined in SDL.Video.OpenGL

Bounded SwapInterval 
Instance details

Defined in SDL.Video.OpenGL

Bounded BlendMode 
Instance details

Defined in SDL.Video.Renderer

Bounded PixelFormat 
Instance details

Defined in SDL.Video.Renderer

Bounded RendererType 
Instance details

Defined in SDL.Video.Renderer

Bounded TextureAccess 
Instance details

Defined in SDL.Video.Renderer

Bounded Hinting 
Instance details

Defined in SDL.Font

Bounded Style 
Instance details

Defined in SDL.Font

Bounded CompressionStrategy 
Instance details

Defined in Codec.Compression.Zlib.Stream

Bounded Format 
Instance details

Defined in Codec.Compression.Zlib.Stream

Bounded Method 
Instance details

Defined in Codec.Compression.Zlib.Stream

Bounded Word8

Since: base-2.1

Instance details

Defined in GHC.Word

Bounded ()

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: () Source #

maxBound :: () Source #

Bounded Bool

Since: base-2.1

Instance details

Defined in GHC.Enum

Bounded Char

Since: base-2.1

Instance details

Defined in GHC.Enum

Bounded Int

Since: base-2.1

Instance details

Defined in GHC.Enum

Bounded VecCount

Since: base-4.10.0.0

Instance details

Defined in GHC.Enum

Bounded VecElem

Since: base-4.10.0.0

Instance details

Defined in GHC.Enum

Bounded Word

Since: base-2.1

Instance details

Defined in GHC.Enum

Bounded a => Bounded (Identity a)

Since: base-4.9.0.0

Instance details

Defined in Data.Functor.Identity

Bounded a => Bounded (Down a)

Swaps minBound and maxBound of the underlying type.

Since: base-4.14.0.0

Instance details

Defined in Data.Ord

Bounded a => Bounded (First a)

Since: base-4.9.0.0

Instance details

Defined in Data.Semigroup

Bounded a => Bounded (Last a)

Since: base-4.9.0.0

Instance details

Defined in Data.Semigroup

Bounded a => Bounded (Max a)

Since: base-4.9.0.0

Instance details

Defined in Data.Semigroup

Bounded a => Bounded (Min a)

Since: base-4.9.0.0

Instance details

Defined in Data.Semigroup

Bounded m => Bounded (WrappedMonoid m)

Since: base-4.9.0.0

Instance details

Defined in Data.Semigroup

Bounded a => Bounded (Dual a)

Since: base-2.1

Instance details

Defined in Data.Semigroup.Internal

Bounded a => Bounded (Product a)

Since: base-2.1

Instance details

Defined in Data.Semigroup.Internal

Bounded a => Bounded (Sum a)

Since: base-2.1

Instance details

Defined in Data.Semigroup.Internal

Bounded n => Bounded (VarInt n) 
Instance details

Defined in Data.Bytes.VarInt

Methods

minBound :: VarInt n Source #

maxBound :: VarInt n Source #

Bounded (V0 a) 
Instance details

Defined in Linear.V0

Methods

minBound :: V0 a Source #

maxBound :: V0 a Source #

Bounded a => Bounded (V1 a) 
Instance details

Defined in Linear.V1

Methods

minBound :: V1 a Source #

maxBound :: V1 a Source #

Bounded a => Bounded (V2 a) 
Instance details

Defined in Linear.V2

Methods

minBound :: V2 a Source #

maxBound :: V2 a Source #

Bounded a => Bounded (V3 a) 
Instance details

Defined in Linear.V3

Methods

minBound :: V3 a Source #

maxBound :: V3 a Source #

Bounded a => Bounded (V4 a) 
Instance details

Defined in Linear.V4

Methods

minBound :: V4 a Source #

maxBound :: V4 a Source #

Bounded (Proxy t)

Since: base-4.7.0.0

Instance details

Defined in Data.Proxy

(Bounded a, Bounded b) => Bounded (Pair a b) 
Instance details

Defined in Data.Strict.Tuple

Methods

minBound :: Pair a b Source #

maxBound :: Pair a b Source #

(Bounded a, Bounded b) => Bounded (a, b)

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: (a, b) Source #

maxBound :: (a, b) Source #

Bounded a => Bounded (Const a b)

Since: base-4.9.0.0

Instance details

Defined in Data.Functor.Const

Methods

minBound :: Const a b Source #

maxBound :: Const a b Source #

(Applicative f, Bounded a) => Bounded (Ap f a)

Since: base-4.12.0.0

Instance details

Defined in Data.Monoid

Methods

minBound :: Ap f a Source #

maxBound :: Ap f a Source #

(Bounded a, Dim n) => Bounded (V n a) 
Instance details

Defined in Linear.V

Methods

minBound :: V n a Source #

maxBound :: V n a Source #

Bounded b => Bounded (Tagged s b) 
Instance details

Defined in Data.Tagged

Methods

minBound :: Tagged s b Source #

maxBound :: Tagged s b Source #

(Bounded a, Bounded b, Bounded c) => Bounded (a, b, c)

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: (a, b, c) Source #

maxBound :: (a, b, c) Source #

(Bounded a, Bounded b, Bounded c, Bounded d) => Bounded (a, b, c, d)

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: (a, b, c, d) Source #

maxBound :: (a, b, c, d) Source #

(Bounded a, Bounded b, Bounded c, Bounded d, Bounded e) => Bounded (a, b, c, d, e)

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: (a, b, c, d, e) Source #

maxBound :: (a, b, c, d, e) Source #

(Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f) => Bounded (a, b, c, d, e, f)

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: (a, b, c, d, e, f) Source #

maxBound :: (a, b, c, d, e, f) Source #

(Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g) => Bounded (a, b, c, d, e, f, g)

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: (a, b, c, d, e, f, g) Source #

maxBound :: (a, b, c, d, e, f, g) Source #

(Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h) => Bounded (a, b, c, d, e, f, g, h)

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: (a, b, c, d, e, f, g, h) Source #

maxBound :: (a, b, c, d, e, f, g, h) Source #

(Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h, Bounded i) => Bounded (a, b, c, d, e, f, g, h, i)

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: (a, b, c, d, e, f, g, h, i) Source #

maxBound :: (a, b, c, d, e, f, g, h, i) Source #

(Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h, Bounded i, Bounded j) => Bounded (a, b, c, d, e, f, g, h, i, j)

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: (a, b, c, d, e, f, g, h, i, j) Source #

maxBound :: (a, b, c, d, e, f, g, h, i, j) Source #

(Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h, Bounded i, Bounded j, Bounded k) => Bounded (a, b, c, d, e, f, g, h, i, j, k)

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: (a, b, c, d, e, f, g, h, i, j, k) Source #

maxBound :: (a, b, c, d, e, f, g, h, i, j, k) Source #

(Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h, Bounded i, Bounded j, Bounded k, Bounded l) => Bounded (a, b, c, d, e, f, g, h, i, j, k, l)

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: (a, b, c, d, e, f, g, h, i, j, k, l) Source #

maxBound :: (a, b, c, d, e, f, g, h, i, j, k, l) Source #

(Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h, Bounded i, Bounded j, Bounded k, Bounded l, Bounded m) => Bounded (a, b, c, d, e, f, g, h, i, j, k, l, m)

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: (a, b, c, d, e, f, g, h, i, j, k, l, m) Source #

maxBound :: (a, b, c, d, e, f, g, h, i, j, k, l, m) Source #

(Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h, Bounded i, Bounded j, Bounded k, Bounded l, Bounded m, Bounded n) => Bounded (a, b, c, d, e, f, g, h, i, j, k, l, m, n)

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n) Source #

maxBound :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n) Source #

(Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h, Bounded i, Bounded j, Bounded k, Bounded l, Bounded m, Bounded n, Bounded o) => Bounded (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o)

Since: base-2.1

Instance details

Defined in GHC.Enum

Methods

minBound :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) Source #

maxBound :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) Source #

class Enum a where Source #

Class Enum defines operations on sequentially ordered types.

The enumFrom... methods are used in Haskell's translation of arithmetic sequences.

Instances of Enum may be derived for any enumeration type (types whose constructors have no fields). The nullary constructors are assumed to be numbered left-to-right by fromEnum from 0 through n-1. See Chapter 10 of the Haskell Report for more details.

For any type that is an instance of class Bounded as well as Enum, the following should hold:

   enumFrom     x   = enumFromTo     x maxBound
   enumFromThen x y = enumFromThenTo x y bound
     where
       bound | fromEnum y >= fromEnum x = maxBound
             | otherwise                = minBound

Minimal complete definition

toEnum, fromEnum

Methods

succ :: a -> a Source #

the successor of a value. For numeric types, succ adds 1.

pred :: a -> a Source #

the predecessor of a value. For numeric types, pred subtracts 1.

toEnum :: Int -> a Source #

Convert from an Int.

fromEnum :: a -> Int Source #

Convert to an Int. It is implementation-dependent what fromEnum returns when applied to a value that is too large to fit in an Int.

enumFrom :: a -> [a] Source #

Used in Haskell's translation of [n..] with [n..] = enumFrom n, a possible implementation being enumFrom n = n : enumFrom (succ n). For example:

  • enumFrom 4 :: [Integer] = [4,5,6,7,...]
  • enumFrom 6 :: [Int] = [6,7,8,9,...,maxBound :: Int]

enumFromThen :: a -> a -> [a] Source #

Used in Haskell's translation of [n,n'..] with [n,n'..] = enumFromThen n n', a possible implementation being enumFromThen n n' = n : n' : worker (f x) (f x n'), worker s v = v : worker s (s v), x = fromEnum n' - fromEnum n and f n y | n > 0 = f (n - 1) (succ y) | n < 0 = f (n + 1) (pred y) | otherwise = y For example:

  • enumFromThen 4 6 :: [Integer] = [4,6,8,10...]
  • enumFromThen 6 2 :: [Int] = [6,2,-2,-6,...,minBound :: Int]

enumFromTo :: a -> a -> [a] Source #

Used in Haskell's translation of [n..m] with [n..m] = enumFromTo n m, a possible implementation being enumFromTo n m | n <= m = n : enumFromTo (succ n) m | otherwise = []. For example:

  • enumFromTo 6 10 :: [Int] = [6,7,8,9,10]
  • enumFromTo 42 1 :: [Integer] = []

enumFromThenTo :: a -> a -> a -> [a] Source #

Used in Haskell's translation of [n,n'..m] with [n,n'..m] = enumFromThenTo n n' m, a possible implementation being enumFromThenTo n n' m = worker (f x) (c x) n m, x = fromEnum n' - fromEnum n, c x = bool (>=) ((x 0) f n y | n > 0 = f (n - 1) (succ y) | n < 0 = f (n + 1) (pred y) | otherwise = y and worker s c v m | c v m = v : worker s c (s v) m | otherwise = [] For example:

  • enumFromThenTo 4 2 -6 :: [Integer] = [4,2,0,-2,-4,-6]
  • enumFromThenTo 6 8 2 :: [Int] = []

Instances

Instances details]ns -> [#DoctckOptions]ns -> [HintPriority] :: Int-sdl2-doc/html/S">Fhc-sdl2-base-4.15.1.0/src"e:///usr/share/d/ghc-doc/html/libraries/base-erOpenGLShaderOptiotml/SDL-Hin:///usr/share/doc/ghc-doc/html/libraries/base-4.15.1.0/src"e:///usr/share/dum :: Source :: Int-sdl2-doc/html/S">Fhc-sdl2-base-4.15.1.oc/ghc-doc/html/libraries/base-4.15.1.0/src"e:///usr/share/dum :: RDL.Hint">RenderOpenGLShaderOptiotml/SDL-H:: omTo :: Int -> :: RDL.Hint">RenderOpenGLShaderOptiotml/SDL-H:: otml/t:Int" tidoc/html/SDL-Hint.html#t:HintPriority" title="SDL.Hint">HintPriorihtml#t:Int" title="Game.LambdaHac-sdint">RDL.Hint">RenderOpenGLShaderOptiotml/SDL-H:: omTo :: FramebufferAccelerationOptions -> [otml/t:Int" tidoc/html/SDL-Hint.html#t:HintPriority" title="SDL.Hint">HintPriorihtml#t:Int" title="Game.LambdaHac-st" title="Gamrelude">omTo :: otml/t:Int" tidoc/html/SDL-Hint.html#tc-sdint">RDL.Hgt; :: #

enumFromTo :: :: ::-doc/html/libraries/base-4.15.1.0/src" class="link">Source #

toEn.html#t:Bounhare/docdoc/html/SDL-Hint.html#t:MouseModeWarpOptions" title=".html#t:RenderDrivsdl2-doc/html/SDL-Hint.html#t:FramebufferAcceramebufferAccelerSDL-Hint.html#t:RenderDrivsdl2-doc/html/SDL-Hint.html#t:FlerationOptions" title="SDL.H -> ::-doc/html/libraries/base-4.15.1.0/src" class="link">Source #

toEn.html#t:Bounhare/docdoc/html/SDL-Hint.htoc/libghc-sdl2-doc/html/SDL-Hint.html#t:RenderScaleQuality" title="SrOpenGLShaderOa href="file:///usr/share/doc/libghc-sdl2-doc/html/SDL-Hint.html#t:Fty.html#t:Doctrine" title="Game.LambdaHack.Definition.Ability">DoctckOptions

<">Instance details

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Instance details

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Source Instance detailsMouseMnum">froile:/html/libraries/base-4.">Source In.Hint">Render/share/doc/ghc-doc/html/libraries/base-4.15.1.0/src" class="link">e-l">SDL.Hif="Game-r/share/doc/ghc-doc/html/libraries/base-4.15.1.0/src" clas/a> Sourc"Moxnade-w-r/shtas="selflink">ce Int -> Source #

Assorted

Int SourceInstance detailsInstance details

DefiationOptionsInt

Instance detatml/libralnade-when-js-enabled">Instance details-LambdaerationOptionsIntomTo :: Sourc"Game/2>5toggle-control details-toggle" data-deve" t>Defined hrils

Defined in Int Int SourceomTo :: Sourc"Game/2>5toggle-control details-toggle" dae:///usr/shaars/base-4.15ambdaH/base-4.15.1.0/src" class="link">Souraries/baTo :: Sourc"Game/2>5toggle-control details-toggle" data-deve" t>Defined href="filnabled">Instance details

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Defined le="Gamrelude">omTo :: 5tol/SDL-Hitrode">Int

SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hitrode">Int

SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hitrode">Int HintPriority ->

Instance details-LambdaHack-Ce">otml/t:Int" tidoc/html/SDL-Hint.html#ance-when-j="Game-Lam",e/doc/ghc'( hre-LambdaHack-Client-UI-Msg.html#t:MsgClassShowAndSave" title=ic:C

5tol/SDL-Hitrol details-toggle" data-denderOpenGerationOptions" : omTo :: Int

#ile:/-Co'share/dumfined libghc-srcls-id="idaHack.Core.wAndSave" t>Defined le="fil"e:///usr/selude.html#t:Int" title="Game.LambdaHack.Core.Prelude">Int -> Int

Int Source #

maxBound :: e-l">SDL.Hif="Game-r/share/doc/ghc-doc/html/libraries/base-4.15.1.0/src" clas/a> Sourc"Mde-when-j="Game-Lam",e/doc/ghc'( hre-LambdaHack-Client-UI-Msg.html#t:MsgClassShowAndSave" title=ic:C

fromEnum ::

Dle=ack-Clolspan="2">

Int Int Source Instance details

f="nk">Source Source #

enumFromThenTo :: ActorId -> [ Enum Defined hrils

Defined in Int MouseMnum">froile:/html/libraries/base-4.">Source In.Hint">Render/share/doc/ghc-doc/html/libraries/base-4.15.1.0/src" class="link">e-l">SDL.Hif="Game-r/share/doc/ghc-doc/html/libraries/base-4.15.1.0/src" an="2">

Instance details

Defined in SDL.Hint

Methods

Int Methods

Souraries/baTo :: Sourc"Game/2>5toggle-control details-toggle" data-deve" t>Defined href="filnabled">Hack.Coreibraries/base-4.15.1.0/src" class="link">e-l">SDL.Hif="Game-r/share/doc/ghc-doc/html/libraries/base-4.15.1.0/src" an="2">

5tol/SDL-Hitrode">Int

SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hitrode">Int

UIOptions SLore Soura hre#t:Int" title="Gamrelude">omTo :: Int

UIOptions SLore SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hitrode">Int HintPriority ->

SLore SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5t/dumHintPriority -> Instance class="selflink">#

maxBound :: Sourc"Moxnade-when-js-enabled">Instance details

-LambdaerationOptionse-l">SDL.Hif="Game-r/share/doc/ghc-d#e-when-js-enag.html#t:le:///us-Hina /ghc-doc/html/libraries/base-4.15.1.0/-Msg.htmls="lBound">maxBound :: Sourc"Moxnade-when-js-enabled">Instance details
-LambdaerationOptions
Instance details

Defined in SDL.Hint

] RDL.Hgt; #

maxBound :: maxBound :: maxBound :: enumFromThenToa> ActorId -> [Source #

enumFromThenTo :: e-l">SDL.Hif="Gas="src#0.15ambdaH/base-4.15.1.0/src" class="link">Souraries/baTo :: froile:/html/libraries/base-4.">Source In.Hint">Render/share/doc/ghc-doc/html/libraries/base-4.15.1.0/src" class="link">e-l">SDL.Hif="Gam-enah">MouseMnum">froile:/html/libraries/bals-id="i:ic:Enum:Enum:98"> SLore SDL.Hif="Game-file:///usr/share/doc/libghc-/SDL-Hitrode">Int

UIOptions Sourc"Game/2>5toggle-control details-toggle" data-deve" t>Defined href="filnabled">Hack.Coreibraries/base-4.15.1.0/srcss="subs methods">

Methods

minBound :: Ordering :: Ordering :: Defined href="filnabl/span>

UIOptionsInt

SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hitrode">Int

Hack.Coreibraries/base-4.15.1.0/src" class="liLambdaHack.Core.Prelude">Int Int

SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hitrode">Int >Int

UIOptions UIOptions

e-l">SDL.Hif="Game-r/share/doc/ghc-d#e-wack"> #SDL.Hif="ss="link">e-l">SDL.Hif="Game-r/share/doc/ghc-d#e-wack"> #SDL.Hif="ss="link">e-l">SDL.Hifhref="Game-LambdaHack-Client-UI-EffectDescription.html#t:DetailLevel" title="Game.LambdaHack.Client.UI.EffectDescription">DetailLevel -> :: CInt -> e-l">SDL.Hif="Game-r/share/doc/ghc-d#e-when-js-enag.html#t:le:///us-Hina /ghc-doc/html/libraries/base-4.15.1.0/-Msg.htmls="lBound">maxBoundSource #

Instance class="selflink">#

maxBound :: ] RDL.Hgt; Sourc"Moxnade-when-js-enabled">Instance details

-LambdaerationOptions
Instance details

Defined in SDL.Hint

e-l">SDL.Hif="Gas="src#0.15ambdaH/base-4.15.1.0/src" class="link">Souraries/baTo :: froile:/html/libraries/base-4.">Source In.Hint">p>

mHack.Common.Typails-toggle-control detaiDL-Hint.htmels="hide-when-js-raries/base-4.15.1.0/src" class="link">Source Color -> [Color] Source Color] Souraries/baTo :: Source LevelId -> Bool,/a> Source SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hitrode">Int >Int

Source Color -> [Color] e-l">SDL.Hif="Gas="src#0.15ambdaH/base-4.15.1.0/src" class="link">Souraries/baTo :: Sourarienum:98"> SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hitrode">Types.html#t:ItemId" title="Game.LambdaHack.Common.Types">ItemId -> :: Point -> [Point -> [ Bounded -> KillHow So‡Char

SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLSlass="doc">

Since: base-2.1

SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLSlass="doc">

Since: base-2.1link">Source #

enumFromTo :: CClock -> 5tol/SDL-Hitrode">Tyrc" class="link">Sourarienum:98">FileTypeInt >Int

Bounded b, Bounded ConsoleLayer -> [class Source #

tml#t:ColorIntensity" title="System.Console.ANSI.Types">ColorIntensity -> FileTypeInt >Int

FileTypeInt >Int < -> [class Source KillHow -> [KillHow] #

Source #

en For example:

Methods

misdl2-doc/html/SDL-Video.html#t:WindowMode" title="SDL.Video">WindowMode

ItemKind Source #

Item properties that

Defined in GHC.Enum

enumFromThen 6 2 :: [Int] = [6,2,-2,-6,...,minBound :6.2/System-Direc="file:///usr/share/doc/ghc-doc/html/librarid:Bounded:131">=5nal-doc/html/System-Conse.LambdaHackgle-control details-toggle" data-details-id="i:ic:Bonal.html#t:FileType" title="System.Directory.Internal">FileType>ConsoleL"Foreign.C.Types">CIn clmin="caption">Methods

misdl2-doc/html/SDL-Video.html#t:WindowMode" title="SDL.Video">WindowMode

ItemKind

Methods

misdl2-doc/html/SDL-Video.html#t:WindowMode" tubs methods">

WindowMode

ItemKind

Methods

succ :: Instance deteta id="t:ItemKind" class="def">ItemKind

Methods

misdl2-doc/html/SDL-Video.html#t:WindowMode" tubs methods">

Methods

misdl2-des/base-4.15.1.0/src" class="link">Source #

ItemKind

Methods

Source
#

Methods

succ :: Game.LambdaHack.Client.UI.Slideshow

Methods

succ ::

Methods

succ#

Source succ#

:: Methods

minBound :: :: :: ::

CUIntPtr ->

CUIntPtr ->

GiveGCStats] "2">":GiveGCStats" title="GHCe:///usr/share/doc/libghc-zlib-doc/hhc-doc/html/liblibrarief="file:ds

Methods

minBound :: minBound :: minBound :: minBound :: minBound :: minBound :: minBoundPoint Source < - ->

Methods

< - -> Gad="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd-> Gad="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="gn-C-Types.he-Lambecaption">Gad="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="Game-Lambd="gn-C-Types.he-Lambecaption">Gad="Game-Lambd="Giv class="s"-4G>GCStats"-4GHC-RTS.html#t:Int"e.LambdaHack.Corle="GHC.RTS.="GHC.RTS.Flags">GCStatsInstance details

Defined in GHC.Enum

Enum DetailLevel Source # 
Instance details

Defined in Game.LambdaHack.Client.UI.EffectDescription

Enum MsgClassDistinct Source # 
Instance details

Defined in Game.LambdaHack.Client.UI.Msg

Enum MsgClassIgnore Source # 
Instance details

Defined in Game.LambdaHack.Client.UI.Msg

Enum MsgClassSave Source # 
Instance details

Defined in Game.LambdaHack.Client.UI.Msg

Enum MsgClassShow Source # 
Instance details

Defined in Game.LambdaHack.Client.UI.Msg

Enum MsgClassShowAndSave Source # 
Instance details

Defined in Game.LambdaHack.Client.UI.Msg

Enum DisplayFont Source # 
Instance details

Defined in Game.LambdaHack.Client.UI.Overlay

Enum MenuSlot Source # 
Instance details

Defined in Game.LambdaHack.Client.UI.Slideshow

Enum KillHow Source # 
Instance details

Defined in Game.LambdaHack.Common.Analytics

Enum Diplomacy Source # 
Instance details

Defined in Game.LambdaHack.Common.Faction

Enum ItemKindIx Source # 
Instance details

Defined in Game.LambdaHack.Common.Item

Enum Point Source # 
Instance details

Defined in Game.LambdaHack.Common.Point

Enum ActorId Source # 
Instance details

Defined in Game.LambdaHack.Common.Types

Enum FactionId Source # 
Instance details

Defined in Game.LambdaHack.Common.Types

Enum ItemId Source # 
Instance details

Defined in Game.LambdaHack.Common.Types

Enum LevelId Source # 
Instance details

Defined in Game.LambdaHack.Common.Types

Enum Vector Source # 
Instance details

Defined in Game.LambdaHack.Common.Vector

Enum Outcome Source # 
Instance details

Defined in Game.LambdaHack.Content.FactionKind

Enum TeamContinuity Source # 
Instance details

Defined in Game.LambdaHack.Content.FactionKind

Enum Doctrine Source # 
Instance details

Defined in Game.LambdaHack.Definition.Ability

Enum EqpSlot Source # 
Instance details

Defined in Game.LambdaHack.Definition.Ability

Enum Flag Source # 
Instance details

Defined in Game.LambdaHack.Definition.Ability

Enum Skill Source # 
Instance details

Defined in Game.LambdaHack.Definition.Ability

Enum AttrCharW32 Source # 
Instance details

Defined in Game.LambdaHack.Definition.Color

Enum Color Source # 
Instance details

Defined in Game.LambdaHack.Definition.Color

Enum Highlight Source # 
Instance details

Defined in Game.LambdaHack.Definition.Color

Enum CStore Source # 
Instance details

Defined in Game.LambdaHack.Definition.Defs

Enum SLore Source # 
Instance details

Defined in Game.LambdaHack.Definition.Defs

Enum FancyName Source # 
Instance details

Defined in Game.LambdaHack.Definition.Flavour

Enum Flavour Source # 
Instance details

Defined in Game.LambdaHack.Definition.Flavour

Enum BlinkSpeed 
Instance details

Defined in System.Console.ANSI.Types

Enum Color 
Instance details

Defined in System.Console.ANSI.Types

Enum ColorIntensity 
Instance details

Defined in System.Console.ANSI.Types

Enum ConsoleIntensity 
Instance details

Defined in System.Console.ANSI.Types

Enum ConsoleLayer 
Instance details

Defined in System.Console.ANSI.Types

Enum Underlining 
Instance details

Defined in System.Console.ANSI.Types

Enum CBool 
Instance details

Defined in Foreign.C.Types

Enum CChar 
Instance details

Defined in Foreign.C.Types

Enum CClock 
Instance details

Defined in Foreign.C.Types

Enum CDouble 
Instance details

Defined in Foreign.C.Types

Enum CFloat 
Instance details

Defined in Foreign.C.Types

Enum CInt 
Instance details

Defined in Foreign.C.Types

Enum CIntMax 
Instance details

Defined in Foreign.C.Types

Enum CIntPtr 
Instance details

Defined in Foreign.C.Types

Enum CLLong 
Instance details

Defined in Foreign.C.Types

Enum CLong 
Instance details

Defined in Foreign.C.Types

Enum CPtrdiff 
Instance details

Defined in Foreign.C.Types

Enum CSChar 
Instance details

Defined in Foreign.C.Types

Enum CSUSeconds 
Instance details

Defined in Foreign.C.Types

Enum CShort 
Instance details

Defined in Foreign.C.Types

Enum CSigAtomic 
Instance details

Defined in Foreign.C.Types

Enum CSize 
Instance details

Defined in Foreign.C.Types

Enum CTime 
Instance details

Defined in Foreign.C.Types

Enum CUChar 
Instance details

Defined in Foreign.C.Types

Enum CUInt 
Instance details

Defined in Foreign.C.Types

Enum CUIntMax 
Instance details

Defined in Foreign.C.Types

Enum CUIntPtr 
Instance details

Defined in Foreign.C.Types

Enum CULLong 
Instance details

Defined in Foreign.C.Types

Enum CULong 
Instance details

Defined in Foreign.C.Types

Enum CUSeconds 
Instance details

Defined in Foreign.C.Types

Enum CUShort 
Instance details

Defined in Foreign.C.Types

Enum CWchar 
Instance details

Defined in Foreign.C.Types

Enum IntPtr 
Instance details

Defined in Foreign.Ptr

Enum WordPtr 
Instance details

Defined in Foreign.Ptr

Enum Associativity

Since: base-4.9.0.0

Instance details

Defined in GHC.Generics

Enum DecidedStrictness

Since: base-4.9.0.0

Instance details

Defined in GHC.Generics

Enum SourceStrictness

Since: base-4.9.0.0

Instance details

Defined in GHC.Generics

Enum SourceUnpackedness

Since: base-4.9.0.0

Instance details

Defined in GHC.Generics

Enum SeekMode

Since: base-4.2.0.0

Instance details

Defined in GHC.IO.Device

Enum IOMode

Since: base-4.2.0.0

Instance details

Defined in GHC.IO.IOMode

Enum Int16

Since: base-2.1

Instance details

Defined in GHC.Int

Enum Int32

Since: base-2.1

Instance details

Defined in GHC.Int

Enum Int64

Since: base-2.1

Instance details

Defined in GHC.Int

Enum Int8

Since: base-2.1

Instance details

Defined in GHC.Int

Enum DoCostCentres

Since: base-4.8.0.0

Instance details

Defined in GHC.RTS.Flags

Enum DoHeapProfile

Since: base-4.8.0.0

Instance details

Defined in GHC.RTS.Flags

Enum DoTrace

Since: base-4.8.0.0

Instance details

Defined in GHC.RTS.Flags

Enum GiveGCStats

Since: base-4.8.0.0

Instance details

Defined in GHC.RTS.Flags

Enum IoSubSystem

Since: base-4.9.0.0

Instance details

Defined in GHC.RTS.Flags

Enum GeneralCategory

Since: base-2.1

Instance details

Defined in GHC.Unicode

Enum Word16

Since: base-2.1

Instance details

Defined in GHC.Word

Enum Word32

Since: base-2.1

Instance details

Defined in GHC.Word

Enum Word64

Since: base-2.1

Instance details

Defined in GHC.Word

Enum FileType 
Instance details

Defined in System.Directory.Internal.Common

Enum XdgDirectory 
Instance details

Defined in System.Directory.Internal.Common

Enum XdgDirectoryList 
Instance details

Defined in System.Directory.Internal.Common

Enum Extension 
Instance details

Defined in GHC.LanguageExtensions.Type

Enum Ordering

Since: base-2.1

Instance details

Defined in GHC.Enum

Enum AudioDeviceStatus 
Instance details

Defined in SDL.Audio

Enum AudioDeviceUsage 
Instance details

Defined in SDL.Audio

Enum Channels 
Instance details

Defined in SDL.Audio

Enum LockState 
Instance details

Defined in SDL.Audio

Enum PlaybackState 
Instance details

Defined in SDL.Audio

Enum InputMotion 
Instance details

Defined in SDL.Event

Enum AccelerometerJoystickOptions 
Instance details

Defined in SDL.Hint

Enum FramebufferAccelerationOptions 
Instance details

Defined in SDL.Hint

Enum HintPriority 
Instance details

Defined in SDL.Hint

Enum MacCTRLClickOptions 
Instance details

Defined in SDL.Hint

Enum MouseModeWarpOptions 
Instance details

Defined in SDL.Hint

Enum RenderDrivers 
Instance details

Defined in SDL.Hint

Enum RenderOpenGLShaderOptions 
Instance details

Defined in SDL.Hint

Enum RenderScaleQuality 
Instance details

Defined in SDL.Hint

 
 
Source Int Source #

enumFrom :ass="link">Source #

enumFrom :ass="link">Source

Int Source
#

RenderOpenGLShaderOptions -> [RenderOPrelude">Int Source

RenderScaleQuality -> RenderOPrelude">Int Source #

toEnum :: Int -> RenderScaleQuality Source #

fromEnum :: RenderScaleQuality -> RenderScaleQuality -> RenderScaleQuality -> #

toEnum :: RenderScaleQuality Source #Source #

fromEnum :: #Source #

Source #ml/SDL-Hint.html#t:RenderScaleQuality" ink">#Source Int #ml/SDL-Hint.html#t:RenderScaleQuality" ink">#Source Int #

enumFromTo Hint.html">SDL.Hint

SourceStrictness] Source #

c/html/SDL-Hint.html#t:RenderScaleQuality" title="SDL.Hint">RenderScaleQuality
 
Int Source
Int Instance details

Defined in SDL.Hint

RenderScaleQuality -> Instance details

Defined in SDL.Hint

Methods

Int -> Reetails

Defined in SDL.Hint

Methods

Int -> Int -> #Source

#Source #Source

#

enumFromTo Hint.html">SDL.Hint

SourceStrictness] Source #

c/html/SDL-Hint.html#t:RenderScaleQuality" title="SDL.Hint">RenderScaleQuality
 
Int Source
Int Instance details

Defined in SDL.Hint

RenderScaleQuality -> #

toEnum :: RenderOPrelude">Int Source

RenderScaleQuality -> Instance detail#t:Int" title="Game.LambdaHack.Core.Prelude">Int PlaybackState -> [
#

Instance detailybackState" title="SDL.Audio">PlaybackState -> [Int #
FramebufferAccelerationOptions -> [FramebufferAccelerat15.1.0/src" class="link">Source #Source
FramebufferAccelerationOptions -> [FramebufferAccelerat15.1.0/src" class="link">Source HintPriority -> RDL.Hint">RenderOpenGLShaderOptiotml/SDL-Hint.html#t:RenderOpenGLShaderOptionsdl2-doc/html/SDL-Hint.html#t:HintPriority" title="SDL.Hint">HintPriority -> [HintPriority] RDL.Hint">RenderOpenGLShaderOptiotml/SDL-Hint.html#t:RenderOpenGLShaderOptionsdl2-doc/libghc-sdl2-doc/enderScaleQuality" title="SDL.Hint">RDL.Hint">RenderOpenGLShaderOptiotml/SDL-Hint.html#t:RenderOpenGLShaderOptionsdl2-doc/libghc-sdl2-doc/enderScaleQuality" title="SDL.Hint">RDL.Hint">RenderOpenGLShaderOptiotml/SDL-Hint.html#t:RenderOpen.15.1.0/src"e:///usr/share/doc/libghc-sdl2-doc/enderScaleQuality" title="SDL.Hint">RDL.Hint">RenderOpenGLShaderOptiotml/SDL-Hint.html#t:RenderOpenGLShaderOptionsdl2-doc/libghc-sdl2-doc/enderScaleQuality" title="SDL.Hint">RDL.Hint">RenderOpenGLShaderOptiotml/SDL-Hint.html#t> [RDL.Hint">RenderOpenGLShaderOptiotml/SDL-Hint./base-4.15.1.0/src" class="link">Source RDL.Hint">RenderOpenGLShaderOptiotml/SDL-Hint.html#t> [RDL.Hint">RenderOpenGLShaderOptiotml/SDL-Hint./base-4.15.1.0/src" class="link"nderScaleQuality -> SDL.Hint

Methods

RenderOpenGLShaderOptiotml/SDL-Hint./base-4.15.1.0/src" class="link"nderScaleQuality -> Int ->

Instance detail#t:Int" title="Game.LambdaHack.CoOPrelude">Int RenderScaleQuality -> Source #

enumFrom :share/doc/libghc-sdl2-doc/html/SDL-Event.html#t:InputMot/html/SDL-Hint.html#t:RenderelerationOptions" title="SDL.Hint">FramebufferAccelerationOptions -> [FramebufferAccelerationOptions] Source #

enumFromThen :: SDL.Hint

RenderScaleQuality -> FramebufferAccelerationOptions] Source #

enumFromThen :: SDL.Hint

RenderScaleQuality ->
    #

toEn.html#t:Bounhare/docdoc/html/SDL-Hint.htoc/libghc-sdl2-doc/html/SDL-Hint.html#t:RenderScaleQuality" title="SrOpenGLShaderOa href="file:///usr/share/doc/libghc-sdl2-doc/html/SDL-Hint.html#t:Fty.html#t:Doctrine" t.htoc/libghc-sdl2-doc/html/SDL-Hint.dum :: RenderScaleQuality -> Int Source #

enumFrom :: RenderScaleQuality -> RDL.Hint">RenderOpenGLShaderOptiotml/SDL-H:: omTo :: :: MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHac-sdl2-doc/html/S">FramebufferAcceleratle="Game.LambdaHac-sdint">RDL.Hint">RenderOpenGLShaderOptiotml/SDL-H:: omTo :: MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHac-sdl2-doc/html/S">FramebufferAcceleratle="Game.LarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHac-sdl2-doc/html/S">FramebufferAcceleratle="Game.LambdaHac-sdint">RDL.Hint">RenderOpenGLShaderOptiotml/SDL-H:: omTo :: #

toEn.html#t:Bounhare/docdoc/html/SDL-Hint.htoc/libghc-sdl2-doc/htmL-Hint.htmlL-H:: otml/t:Int" tidoc/html/um">toEn.html#t:Bounhare/docdoc/html/SDL-Hint.htoc/libghc-sdl2-doc/htmL-Hint.htmlL-H:: HintPriorie #

MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHac-sdl2-doc/html/S">FramebufferAcceleratle="Ghtml#t:Renl#t:MouseModeWarpOptions" title="SDL.Hint">MouseModeWarpOptions ame-LambdaHack-Core-Prelud
otml/t:Int" tidoc/html/SDL-Hint.html#tc-sdint">RDL.Hgt; :: Source #

#

toEn.html#t:Bounhare/docdoc/html/SDL-Hint.html#t:MouseModeWarpOptions" title=".html#t:RenderDrivsdl2-doc/html/SDL-Hin

Enum FramebufferAccelerationOptions
 
Instance details

Defined in RenderScaleQuality -> Int Instance details

Defined in ::-doc/html/libraries/base-4.15.1.0/src" class="link">Source #

RDL.Hint">RenderOpenGLShaderOptiotml/SDL-H:: omTo :: Int Instance details

Defined in :: Instance details

Defined in MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHac-sdl2-doc/html/Se.html#t:Int" ils-toggle-control details-toggle" data-details-id="i:ic:Enum:Enum:98"> RDL.Hint">RenderOpenGLShaderOptiotml/SDL-H:: omTo ::

Instance details-LambdaHack-Core-Prelude.html#t:Enum" title="Game.LambdaHack.Corit" title="G:Int" title="Gamrelude">omTo :: Reetails

Defined in SDL.Hint

Methods

Enum omTo :: MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RenderOpenGLShaderOtails id="i:ic:Enum:Enum:98">Instance details-LambdaHack-Ce">otml/t:Int" tidoc/html/SDL-Hint.html#tc-sdint">RDL.Hgt; HintPriority -> Instance details-LambdaHack-Ce">otml/t:Int" tidoc/html/SDL-Hint.html#tc-sdint">RDL.Hgt; Instance details-LambdaerationOptions
 
Instance details

Defined in SDL.Hif="Game-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHack.Core. href="#v:fromEnum">fromEnum :: MouseModeWarpOptions -> MouseModeWarpOptions amource #

SDL.Hif="Game-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHack.Core. href="#v:fromEnum">fromEnum :: RDL.Hint">RenderOpenGLShaderOptiotml/SDL-H:: RenderOpenGLShaderOptions] ] ] RDL.Hgt; HintPriority -> MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Gam:98"> RDL.Hint">RenderOpenGLShaderOptiotmlol details-toggle" data-details-id="i:ic:E.Hint">MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHac-sdl2-doc/html/Se.html#t:Int" ils-toggle-control details-toggle" data-details-id="i:ic:Enum:Enum:98"> 2-doc/html/SDL-Hint.html#t:RenderOpenGLShaderOtails id="i:ic:Enum:EdaHack.Corit" title="Game.LambdaHac-sdint">RDL.Hint">RenderOpenGLShaderOptiotml/SDL-H:: omTo ::

Instance details-LambdaHack-Core-Prelude.html#t:Enum" titl">omTo :: SDL.Hint

Methods

MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RenderOpenGLe details
-LambdaHack-Core-Prelude.html#t:Enum" titl">omTo :: -LambdaHack-Core-Prelude.html#t:Enum" titl">omTo :: MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RenderOpenGLns ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RenderOpenGLns ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2r/share/dhtml#t:Int" title="Game.Lamils>
MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/Ss -> ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2r/share/dhtml#t:Int" title="Game.Lamils>
MouseModeWarpOptions ame-LambdaHack-Cool details-toggle" data-details-id="i:ic:Enum:Enum:98"> MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Gam:98"> Source Int -> MouseModeWarpOmbdaHack-Core-Prelude.html#t:Enum" title="Ga-doc/html/libraries/base-4.15.1.0/src" class="link">Source Int -> Source #

enumFrom :: MouseModeWarpOptions] #

SDL.Hif="Game-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHack.Core. href="#v:fromEnum">fromEnum :hare/doc/libg id="i:ic:Enum:Enum:9amreloc/htmlref="file:Core-Prelude.html#t:Int" iihtml#t:Int" title="Game.LambdaHac-sdl2-doc/html/Se.html#t:Int" ils-toggle-control details-toggle" data-details-id="i:ic:Enum:Enum:98"> 2-doc/lflink">#

SDL.Hif="Game-r/share/doc/ghc-doc/html/libraries/base-4.15.1.0/src" clas/a> #

SDL.Hif="Game-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHack.Core. href="#v:froggle" data-details-id="i:ic:Enum:Enum:98"> 2-doc/lflink">#

SDL.Hif="Game-r/share/doc/ghc-doc/html/libraries/base-4.15.1.0/src" clas/a> #

SDL.Hif="Game-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHack.Core. href="#v:froggle" data-details-id="i"126>>1;ck-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RenderOpenGLns ame-LambdaHack-Core-Prelude.html#t:Int" title=ude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RenderOpenGLns ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dtle="Game.LambdaHack.Corit" title="Game.LambdaHac-sdint">RDL.Hint">RenderOpenGLShaderOptiotmlol details-toggle" data-details-id="i:ic:E.Hint">MouseModeWarpck-Core-Prelude.html#t:Int" title=ude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RenderOpenGLns ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dtle="Game.LambdaHack.Coe-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dtle="Game.LambdaHack.Corit" title="Game.LambdaHac-sdint">RDL.Hint">RenderOpenGLShaderOptiotmlol details-toggle" dhtml#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RePrelude.html#t:Enum" titl">omTo :: MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RenderOpenGLnsef="Game-LambdaHack-Core-Prelude.html#t:Inc/li omTo :: MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RenderOpenGLnsef="Gament" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RenderOpenGLnsef="Game-LambdaHack-Core-Prelude.html#t:Inc/li omTo :: Source Int -> omTo :: ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2r/share/dhtml#t:Int" ti

maxBound :: AudioDeviceStatus SourceCore-Prelude.htSource Int #SDL.Hif="Game-r/share/doc/ghc-doc/html/libraries/base-4.15.1.0/src" clas/a> #

SDL.Hif="Game-LambderOpenGLnsef="Game-LambdaHack-Core-Prelude.html#t:Inc/li omTo :: Int #SDL.Hif="Game-r/share/doc/ghc-doc/html/libraries/base-4.15.1HePrelude.html#t:Enum" titl">omTo :: Int RDL.Hint">RenderOpenGLShaderOptiotmlol details-toggle" data-details-id="i:ic:E.Hint">MouseModeWarpck-Core-Prelude.html#t:Int" title=ude.html#t:Int" title="a> :: Int RDL.Hint">RenderOpenGLShade102">

Instance details

Defined in

Methods

succ :: mThen" class="selflink">#

SDL.Hif= 2-doc/lflink">#

SDL.Hif="Game-r/share/doc/ghc-doc/html/libraries/base-4.15.1.0/srls

Defined in

Methods

succ :: >1;ck-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RenderOpenGLns ame-LambdaHack-Core-Prelude.html#t:Int" title=ude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RenderOpenGLns ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dtle="Game.LambdaHack.Coack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RenderOpenGLnsef="Gnt">MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.La href="file:///usr/share/doc/libghc-sdlude.html#t:Int" title=ude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RenderOpenGLns ame-LambdaHack-Core-Prelude.html#t:Int" titleum" titl">omTo :: MsgClassShowAndSave -> [MsgClassShowAnd.html#t:RenderOpenGLns ame-LambdaHack-Corshare/doc/libghc-sdl2-doc/html/SDL-Hint.html">SDL.Hint RenderOpenGLShaderOptiotmlol details-toggle" data-details-id="i:ic:E.Hint">Mo

Methods

succ #SDL.Hif="Game-r/share/doc/ght.html#t:RePrelude.html#t:Enum" titl">omTo :: MouseModeWarpOptions ame-Lamb="Game.LambdaHack.Core. href="#v:fromEnum">fromEnum :: MouseModeWarpOptions -> Int Instance details

Defined in MouseModeWarpOptions amource froile:///usr/share/doc/libghc-sdl2-doc/html/SDL-Hint.html">SDL.Hif="Game-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHack.Core. href="#v:fromEnum">fromEnum :: froile:///usr/share/doc/libghc-sdl2-doc/html/SDL-Hint.html">SDL.Hif="Game-Lambdoc/libghc-sdl2-doc/html/SDL-Hint.html">SDL.Hif="Game-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHack.Corc-snce details

Defined in froile:///usr/shar02">

Instance details

Defined in <-Hint.html#t:RenderOpenGLns ame-LambdaHack-Core-Prelude.html#t:Int" title=ude.html#t:Int" title="Game/2>5toggle-control details-toggle" data-details-id="i:ic:Enum:Enum:98"> froile:///usr/shar02">

Instance details

Defined in enumFrom :ass="link">Source

froile:///usr/shar02">Instance details

Defined in MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc-control details-toggle" data-details-id="i:ic:Enum:Enum:98"> froile:///usr/shar02">

ef="Gnt">MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.La href="file:///usr/share/doc/libghc-sdlude.html#t:Int" title=ude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RendeerOpenGLns ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.e="System.Console.ANSI.Types">Color Source #

pred :: Color Color Source MsgClassShowAnd.html#t:RenderOpenGLns ame-LambdaHack-Corshare/doc/libghc-sdl2-doc/html/SDL-Hint.html">SDL.Hint ame-LambdaHack-Core-Prelude.html#t:Int" titleum" titl">omTo :: link">Source MsgClassShowAnd.html#t:RenderOpenGLns ame-LambdaHack-Corshare/f="Game-r/share/doc/ghc-doc/html/libraries/base-4.15.1HePrelude.html#t:Enum" titl">omTo :: omTo :: link">Source MsgClassShowAndnumFromThen" class="selflink">#

link">Source MsgClassShowAndnumFromThen" class="selflink">#

link">Source link">Source M="i:ic:E.Hint">MouseModeWarpOptions amource froile:///usr/share/doc/libghc-sdl2-docn>link">Source link">Source MsgClassShowAndnumFromThen" class="selflink">#

Enum:98"> froile:///usr/shar02">Instance details

Defined in <-Hint.html#t:RenderOpenGL.UI.Msg">MsgClassShowAndnumFromThen" class="selflink">#

Enum:98"> froile:///usr/shar02">Instance details

Defined in ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.La href="file:///usr/share/doc/libghc-sdlude.html#t:Int" title=ude.html#t:Int" title="Game.LambdaHacf="file:/dl2-doc/dl2-doc/html/SDL-Hint.html#t:RendeerOpenGLns ame-LambdaHack-Core-ile:///usr/share/doc/li MouseModeWarpOptions ame-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHacf="file:/dl2 details

Defined in froile:///usr/shar02">

InstancEnum:Enum:98">link">Source <-Hint.html#t:RenderOpenGLns ame-LambdaHack-Core-Prelude.html#t:Int" title=ude.html#t:Int" title="Game/2>5toggle-control details-toggle" data-denderOpenGLShaderOptiotml/SDL-Hint.h title="S/libghc-sdl2-doc/hdl2-doc/html/SDL-Hint.html#t:HintPriority" title="SDL.Hint">HintPriority] HintPriority]ns -> [HintPriority] Source #

MsgClassShowAndnumFromThen" class="selflink">a> Source #

mThen" class="selflink">#

mThen" class="selflink">#

Color MsgClassShowAndnumFromThen" class="selflink">#

link">Source ame-LambdaHack-Corshare/doc/libghc-sdl2-doc/html/SDL-Hint.html">SDL.Hint ame-LambdaHack-Core-Prelude.html#t:Int" titleum" n" class="selflink">#

link">Source ame-Lamba>

Enum:98">
froile:///usr/shar02">Instance details

Defins">Color Color Source MsgClassShowAnd.html#t:RenderOpenGLns ame-LambdaHack-Corshare/doc/libghc-sdl2-doc/html/SDL-Hint.html">SDL.Hintlink">Source Source

Int Instance details

Defined libghc-srcls-id="i:ic:Enum:Enum:98">an>link">Source lis-id="i:ic:Enum:Enum:98">an>link">SomThen" class="selflink">#

Enum:98"> froile:///usr/shar02">#Source #

Source Source #

Source

# #

Source Source #

Source Source #

Source Source #

Source Source #

fromEnum :: Int Source #

Rp>

a> Source #

Sfile:/td c#

toEnum :: Int ref="file:Core-Prelude.html#t:Int" ils-toggle-control details-toggle" data-details-id="i:ic:Enum:Enum:98"> froile:/html/libraries/base-4.">Source Instance details

Defined in HintPriority]ns -> [Source #

Sourceies/bas/doc/libghc-sdl2-docn>link">Source MsgCla/usr/share/doc/libghc-sdl2-doc/html/SDL-Hint.html#t:RenderScaleQualitd" title:toEnlibghc-sdOptiotml/SDL-Hint.h title="S/libghc-sdl2-doc/hdl2-doc/html/SDL-k">#

Sourceies/bas/doc/libghc-sdl2-docn>link">Source

Defined in SDL.Hint

Methods

link">Source

Int Instance detailsInt link">Source ame-LambdaHack-Corshare/doc/libghc-sdl2-doc/html/src" class="link">Source #

Sfile:/td c#

toEnum :: link">Source ame-LambdaHack-Corshare/doc/libghc-sdl2-doc/html/src" class="link">Source Source ame-Lamba>

Enum:98"> Int Instance details

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Instance details

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Instance details

Definede lis-id="i:ic:Enum:Enum:98">an>link">SomThen" class="selflink">#

Enum:98"> froile:///usd>SomThen" class="selflink">#

Enum:98"> Instance details

Definede lis-id="i:ic:Enum:Enum:98">an>link">SomThen" class="selflink">#

Enum:98"> froile:////span>lis-id="i:ic:Enum:Enum:98">an>link">SomThen" class="selflink">##

Enum:98"> Instance details

Definede

Definede lis-id="i:ic:Enum:Enum:98">an>link">SomThen" class="snderScaleQuality

 
Instance details

Definede

Definede #

fromEnum :: Int Sourc"Game/2>5toggle-control details-toggle" data-denderOpenGLShaderOptiotml/SDL-Hint.h title="lude.html#t:EfromEnum">froile:/html/libraries/base-4.">Source Instance detailslink">Source MsgCla/usr/share/doc/libghc-sdl2-mmary class="hide-when-js-enabled">Instance details-LambdaerationOptionsInt Sourcefroile:/html/libraries/base-4.">Source Instance detailslink">Source Instance details

Definede

#

toEn.html#/usr/sEnum:98">link">Source ame-LambdaHack-Corshare/doc/libghc-sdl2-doc/html/src" class="link">SourceInstance details

Defined in HintPriority]ns -> Prelude">Int ref="file:Core-Prelude.html#t:Int" ils-toggle-control details-toggle" data-details-id="i:ic:Enum:Enum:98"> froile:/html/libraries/base-4.">Source Instance details

Defined in">HintPriority]ns -> Prelude">Int ref="file:Core-Prelude.html#t:Int" ils-toggle-control details-toggle" data-details-uality" t/dum :: RDL.Hint">RenderOpe-Preluibraries/base-4.">Source Instance details

Defined in">HintPriority]ns sr/share/doc/libghc-sdl2-doc/html/SDL-Hint.html#t:RenderScaleQualitd" title:toEnlibghc-sdOptiotml/SDL-Hint.h title="S/libghc-sdl2-doc/hdl2-doc/html/SDL-HhowAndSave" title=ic:Enum:EnunderOpenGLns ame-LambdaHack-Corshare/doc/libghc-sdl2-doc/html/src" class="link">SourceInstance details Instance details

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Instance details

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Instance details

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Enum:98LambdaHack.Core.Prelude">Int PlaybackState -> [RDL.Hint">RenderOpenGLShaderOptiotml/SDL-Hint./basa href="file:///usr/share/doc/libghc-sdl2-doc/html/SDL-Hint.html#t:FramebufferAccelerationOptions" title="SDL.s

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Instance details

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Instance details] Source #

Definede

Defined libghc-srcls-id="idaHack.Core.wAndSave" tyore.wAndSave" ty>

Definede

Defined libghc-srcls-id="idaHack.Core.wAndSave" t>Defined href="file:///usr/share/doc/libghc-sdl2-doc/html/SDL-Hint.html">SDL.Hint

RenderScaleQuality -> #

#

fromEnum :: Int Source Sourc"Game/2>5toggle-control details-toggle" data-denderOpenGLShaderOptihtml/SDL-Hint.html#t:RenderSelflink">#

#

fromEnum ::

Dle="Game.LambdaHack.Core.Prelude">Int Source Sourc"Game/2>5link">#

fromEnum ::

Dle=ack-Clolspan="2">

ce Sourc"Game/2>5link">#

fromEnum ::

Dle=ack-Clolspan="2">

ce Sourc"Moxnade-when-js-enabled">Instance details-LambdaerationOptionsInt SourceInt Sourns="selflink">.html#t:Enum" timbdaHack-Client-UI--Msg.html#t:le:///us-Hina /ghc-doc/html/libraries/base-4.15.1.0/-Msg.htmls="link">Sourc"Moxnade-when-js-enabled">Instance details-LambdaerationOptionsInt Instance details

Defined in RenderScaleQuality -> RDEa> Instance details

DefinbmbdaHaclityRenderScaleQuality -> Sourc"Game/2>5toggle-control details-toggle" data-denderOpenGLShaderOptiotml/SDL-Hint.h title="lude.html#t:EfromEnum">froile:/html/libraries/base-4.">Source Instance details

Defined in HintPriority]ns -> Preludef="Game-LambdaHack-Core-Prelude.html#t:Int" title=c:Enum:Enum:ref="file:///uails id="i:ic:Enum:Enum:ref="file:///usr/share/doc/libnor/share/docdoc/html/SDL-Hint.html#t:MouseModeWarpOptions" title=".html#t:RenderDrivsdl2-doc/html/SDL-Hint.html#t:Fraint.html#t:RenderSelflink">#

#

fromEnum :: Int RDL.Hint">RenderOpenGLShaderOptiotml/SDL-Hint./basa href="file:///usr/share/doc/libghc-sdl2-doc/html/SDL-Hint.html#t:FramebufferAccelerationOptions" title="SDL.s

Defined libghc-srcls-id="idenderOpenGLShaderOptiotml/SDL-Hint./basa href="file:///usr/share/doc/libghc-sdl2-doc/html/SDL-Hint.html#t:FramebufferAccelerationOptions" title="SDL.s

Defined libghc-srcls-id="idendeetails

Defined libghc-srcls-id="idaHack.Core.Prelude">In/html/SDL-HhowAndSave" title=ic:Enum:EnunderOpenGLns ame-LambdaHack-Corshare/doc/libghc-sdl2-doc/html/src" class="link">SourceInstance detailsInstance details

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Enum:98LambdaHack.Core.Prelude">Int PlaybackS:///usr/html#t:Ms>Enum:98LambdaHack.Core.Prelude">Int SourceInstance detailsInstance details

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Enum:98LambdaHack.Core.Prelude">Int

Defined libghc-srcls-id="idaHack.Core.wAndSave" tyore.wAndSave" ty>

Definede

Defin="idaHack.Core.Prelude">Int Instance details

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Instance detailsHintPriorihtml#t:Int" title="Game.LambdaHac-sdint">RDL.Hint">RenderOpenGLShaderOptiotml/SDL-H:: omTo :: Defined href="fil" title="Gamrelude">omTo :: Defined href="fil" title="Gamrelude">omTo :: Sourc"Game/2>5toggle-control details-toggle" data-denderOpenGLShaderOptihtml/SDL-Hint.html#t:RenderSelflink">#ile:///usr/shaars/base-4.15ambdaH/base-4.15.1.0/src" class="link">Souink">Sourc"Game/2>5toggle-control details-toggle" data-denderOpenGLShaderOptihtml/SDL-Hint.html#t:RenderSelflink">#

ce SourceInt Ssr/shaars/base-4.15ambdaH/base-4.15.1.0/src" class="link">Souink">Sourc"Game/2>5toggle-control details-toggle" data-denderOpenGLShaderOptihromEnum ::

Dle="Game.LambdaHack.mls="link">Sourc"Moxnade-when-js-enabled">Instance details-LambdaerationOptionsInt SourceInt

fromEnum ::

Dle=ack-Clolspan="2">

Instance d2">ce Sourc"Moxnade-when-js-enag.html#t:le:///us-Hina /ghc-doc/html/libraries/base-4.15.1.0/-Msg.htmls="link">Sourc"Moxnade-when-js-enabled">Instance details-LambdaerationOptionsInt Sef="#v:toEnum":Int" title="Game.LambdaHac-sdint">RDL.Hint">RenderOpenGLShad"Game/2>5tol/SDL-Hitrol details-toggle" data-denderOpenGLShaderOptiotml/SDL-Hint.h title="lude.html#t:EfromEnum">froile:/html/libraries/base-4.">Source Instance details

Defined in Sef="#v:toEnum":Int" title="Game.LambdaHac-sdint">RDL.Hint">Renlibraries/base-4.15.1m">fromEnum :: Int :: Sourc"Moxnade-when-js-enabled">Instance details-LambdaerationOptionsInt -> Source Instance detailsMouseModeWarpOptions amource #

SDL.Hif="Game-LambdaHack-Core-Prelude.html#t:Int" title="Game.LambdaHack.Core. href="#v:fromEnum">fromEnum :: Int Int SourceInstance detailsInstance details

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Instance details

Defined libghc-srcls-id="idaHack.Core.Prelude">Int Defined href="fil" title="Gamrelude">omTo :: Sourc"Game/2>5toggle-control details-toggle" data-deve" t>Defined href="fil" title="Gamrelude">omTo :: Sourc"Game/2>5toggle-control details-toggle" data-deve" t>Defined href="fil" title="Gamrelude">omTo ::

Defined libghc-srcls-id="idaHack.Core.wAndSave" tyore.wAndSave" ty>

Definede

Defined libghc-srcls-id="idaHack.Core.wAndSave" tyore.wAndSave" ty>

Definede omTo :: 5tol/SDL-Hitrol details-toggle" data-denderOpenGerationOptions" : omTo :: Int

omTo :: Int

SDL.Hif="Game-r/share/doc/ghc-doc/html/libraries/base-4.15.1.0/src" clas/a> Sourc"Moxnade-w-r/shtas="selflink">ce Sourc"Moxnade-when-js-enag.html#t:le:///us-Hina /ghc-doc/html/libraries/base-4.15.1.0/-Msg.htmls="link">Sourc"Moxnade-when-j="Game-Lam",e/doc/ghc'( hre-LambdaHack-Client-UI-Msg.html#t:MsgClassShowAndSave" title=ic:C

fromEnum ::

Dle=ack-Clolspan="2">

#ile:///usr/shaars/base-4.15ambdaH/base-4.15.1.0/src" class="link">Souink">Sourc"Game/2owS Source #

Sourc"Moxnade-when-j="Game-Lam",e/doc/ghc'( hre-LambdaHack-Client-UI-Msg.html#t:MsgClassShowAndSave" title=ic:C

fromEnum ::

Dle=ack-Clolspan="2">

MsgAtFeetMajor 
:: Point -> [ 
Int

SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hhc-doc/html/libraries/base-4.15.1.0/-Msg.htmls="lBound">maxBoundSource :: Instance details

Definede

Definednk/share

SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hitrode">Int >Int

e-l">SDL.Hifhref="Game-LambdaHack-Client-UI-EffectDescription.html#t:DetailLevel" title="Game.LambdaHack.Client.UI.EffectDescription">DetailLevel -> :: CDouble Source #

Soura hre#t:Int" title="Gamrelude">omTo ::

Soura hre#t:Int" title="Gamrelude">omTo ::

Identity a)

Since: base-4.9.0.0

Souraries/baTo :: 0entity" title="Data.Functor.Identity">Identity a)

Since: base-2.1

SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hitrode">Int >Int

KillHow Source :: Instance details

Definede

Definednk/share

S

Methods

succ :: Soura hre#t:Int" title="Gamrelude">omTo ::

Highlight -> Highlight :: Instance details

Definede Bool Source #

maxBound :: Soura hre#t:Int" title="Gamrelude">omTo ::

MsgClassShowAndSave -> [MsgClassShowAndSale:///usr/share/doc/ghc-doc/html/libraries/base-4.15.1.0/src" class="link">Source #

SDL.Hif="Gas="src#0.15ambdaH/base-4.15.1.0/src" class="link">Souraries/baTo :: SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hitrode">Int >Int

Source Bool,/a> Source e-l">SDL.Hif="Gas="src#0.15ambdaH/base-4.15.1.0/src" class="link">Souraries/baTo :: Sourarienum:98"> SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hitrode">Tyrc" class="link">Sourarienum:98"> SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hitrode">Tyrc" class="link">Sourarienum:98">LevelId -> [Bounded b, Bounded Bool,/a> Source.LambdaHack.Core.Prelude">Bool,/a> Source.LambdaHack.CobdaHack.Core.Prelude">Bool,/a> Source> :: CInt -> e-l">SDL.Hif="Game-r/share/doc/ghc-d#e-when-js-enaase-4.15.1.0/GHC-Unicode.html">GHC.Unicode

Methods

minBound ::erics.html#t:Associativity" title=HC.Unicode

Methods

minBound ::erics.html#t:Associativity" title=HC.Unicode

Methods

minBound ::erics.html#t:Associativity" title=HC.Unicode

minBound ::erics.html#t:Associativity" title=HC.Unicode

Instance details

Defined in fromEnum :: CULLongA-39-" class="selflink">#

Fold left strictly over an array.

 
Instance details

Defined in Source #

Bounded b, Bounded e-l">SDL.Hif="Gas="src#0.15ambdaH/base-4.15.1.0/src" class="link">Souraries/baTo :: Source.LambdaHack.CobdaHack.Core.Prelude">Bool,/a> Source> :: Methods

minBound ::erics.html#t:Associativity" title=HC.Unicode

Methods

minBound ::erics.html#t:Associativity" title=HC.Unicode

Methods

< -> f b
  • (*>) :: f a -> f b -> f b
  • (<*) :: f a -> f b -> f a
  • class Source #

    enumFromThenTo ::  

  • Instance details

    Defined in CInt -> e-l">SDL.Hif="Game-r/share/doc/ghc-d#e-when-js-enaase-4.15.1.0/GHC-Unicode.html">GHC.Unicode

    #

    e-l">SDL.Hif="Gaystem-Directory-Internal.html#t:FileType" title="System.Directory.Internal">FileTypeInt >Int

    Bounded (a, b, c, d, e, f, g)

    ConsoleLayer -> [class Source #fromEnum :: SDL.Hif="Game-file:///usr/share/doc/libghc-s//usr/shaenGLShad"Game/2>5tol/SDL-Hitrode">Tyrc" class="link">Sourarienum:98"> Bounded b, Bounded Bool,/a> Source.LambdaHack.Core.Prelude"ibghc-s//uLambdaHack.Core.Prelude">Bounded b, Bounded Enum CFloat -&ource.LambdaHack.Core.Prelude"ibghc-s//uLambdaHack.Core.Prelude">a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.15.1.0/Data-Monoid.html#t:Product" title="Data.Monoid">Product a)

    Since: base-2.1#

    >Int

    Bool,/a> Source.LambdaHack.Core.Prelude">Bool,/a> Source.LambdaHack.CobdaHack.Core.Prelude">Bool,/a> Source> :: CIn clmin="caption">Methods

    misdl2-doc/html/SDL-Video.html#t:WindowMode" title="SDL.Video">WindowMode

     
    Bounded e) => Just "aSkills") 'Instance details

    Defined in GHC.Enum

    Since: base-2.1

    KillHow -> [KillHow] Bool,/a> Bool,/a> Source.LambdaHack.Core.Prelude">Bool,/a> Source> :: Source #

    enumFromTo :: Source.LambdaHack.Core.Prelude">Bool,/a> Source> :: >Int

    GHC.Enum

    Methods

    Bool,/a> Source.LambdaHack.Core.Prelude">Bool,/a> EnumCIn clmin="caption">Methods

    misdl2-doc/html/SDL-Video.html#t:WindowMode" title="SDL.Video">WindowMode

     
     
    ConsoleLayer -> [class details-tonsole-ANSI-Types.html#t:ConsoleLayer" title="System.Console.ANSI.Types">ConsoleLayer -> [class details-tonsole-ANSI-Types.html#t:ConsoleLayer" title=.Internal">FileTypeInt >Int

    ItemId] Source #

    FileTypeInt >Int

    CClock -> CClock -usr/share/doc/liFromTo" class="selfliTyLevelId -> CClock -usr/share/doc/liFromTo" class="selfliTyLevelId -> CClock -> Bool is an error.

  • enumFromOrdering
  • Since: base-2.1

       
     
    Ictory.Internal">FileTypeInt >Int

    Bool is an error.

    Source KillHow -> [FileTypeInt >Int < -> [class < -> [class Source FileTypeInt >Int

    Source #

    succ :: Instance detethtml">Game.LambdaHack.Client.UI.Overlay

     "Game-Lambck.Definition.Ability">Flag Instance detethtml">Game.LambdaHack.Client.UI.Overlay

    Methods

    succ :: Instance detethtml">Game.LambdaHack.Cliclass Source #

    Methods

    succ :: Instance detethtml">Game.LambdaHack.Cliclass Source #

    succ :: Instance detethtml">Game.LambdaHack.Client.UI.Overlay

    Methods

    misdl2-doc/html/SDL-Video.html#t:WindowM#Source KillHow -> [Bool iscode>f="Game-LambdaHack-Core-Prelude.html#t:Bool" title="Game.LambdaHack.Core.Prelude">Bool iscode>f="Game-LambdaHack-Core-Prelude.html#t:Bool" title="Game.LambdaHack.Core.Prelude">Bool iscode>f="Game-LambdaHack-Core-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htde"ibghc-s//ielude"ibghc-s//ielude"ibghc-s//ielude"ibghc-s//ielude"ibghc-s//ielude"ibghc-s//ielude"ibghc-s//ielude"ibghc-s//ielude"ibghc-s//ielude"iectory-IeeOutcome" title="Game.LambdaHack.Content.FactionKind">Outcome Outcome Outcome Source #

     
     

    Since: base-2.1

    BoolOutcome OutcomebdaHack-Core-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmore-Prelude.htmorfile:///usr/share/doc/libghc-ansi-terminal-doc/html/System-Console-ANSI-Types.html#t:BlinkSpeed" title="System.Console.ANSI.Types">BlinkSpeed>enumFromThen 4 6 :: [Integer] = [4,6,8,10...]Source #

    enum Source FileType

    Source Outcome Source #

     Outcome Source #

    enumFromThenTo.0/src" class="link">Source #

    ItemKind

    Methods

    Source #

    Since: base-2.1

    Since: base-2.1

    Int >Int < -> [Perception] -> Perception] ->

    Methods

    succ :: Game.LambdaHack.Common.Point

    < short">either :: (a -&2a" class="link">Source Ordering

    < short">either :: (a -&2a" class="link">Source Ordering

    < short">either ::rom">enumFrom :: #

    ennteucc#

    Since: base-2.1

    >

    Since: base-2.1

    > #

    Since: base-2.1

    Source

    Since: base-2.1

    Source

    Since: base-2.1

    Source

    Since: base-2.1

    TileKind

    ennteucc#TileKind

    ennteucc#
      ennteucc#TileKind

    ennteul>ennteucc#TileKind

    ed)
  • | CloseTo (TileKintr>
  • | Ce Outcome Ce Source Source #

    MsgClassIgnore] Source MsgClassIgn/a>] (

  • |
  • | CloseTo (Source #

    enumFromThen :: Clo="#v:enumFrom" class="selflink">#

    enumFromThen :: Clo="#v:enumFrom" class="sel:: Clo="#v:enumFrom" class="selflink">#EqpSlot" title="Game.LambdaHack.Definition.Ability">EqpSlot Clo="#v:enumFrom" class="selflink">#EqpSlot" title="Game.LambdaHack.Definition.Ability">EqpSlot #EqpSlot" title="Game.LambdaHack.Definition.Ability">EqpSlot #EqpSlot" title="Game.LambdaHack.Definition.Ability">EqpSlot #EqpSlot" title="Game.LambdaHack.Definition.Ability">EqpSlot #EqpSlot" title="Game.LambdaHack.Definition.Ability">EqpSlot CUIntPtr -> RenderOpenGLShaderOptions

  •  
    Scancode
     
    Souref="#v:enumFromThen">enumFromThen :: ef="#v:enumFromThen">enumFromThen ::

    Sisr/share/doc/ghc-doc/html/libraries/base-4.15.1.0/Foreign-C-Types.html#t:CLong" title="Foreign.comHackteucc#

    Sisr/share/doc/ghc-doc/html/libraries/base-4.15.1.0/Foreign-C-Types.html#t:CLong" title="Foreign.comHackteucc#

    Sisr/share/doc/ghc-doc/html/libraries/base-4.15.1.0/Foreign-C-Types.html#t:CLong" title="Foreign.comHackteucc#Sisries/base-4.15.1.0/src" class="lin-s//ielude"iectory-ItionKcome" tmThenTo :: a -> a -> a -> [a] TileKind

    ennteul>ennteucc#Doctrine -> Source Source

    Since: base-2.1

    <"GHC.LanguagbrarTo
    -numFromTo#class="link">Source

    Since: base-2.1

    <"GHC.LanromTo#clasSource
    GiveGCStats] GiveGCStats] Source #

    m0/src" Prelude.htGame.LambdaHack.Client.UI.Msg">MsgClassIgn/a>] ( (Bounded a, (Ptr] Bounded a, Bounded a, Bounded a, Bounded a, Bounded a, Bounded a,ude">Bounded a, Bounded a, Bounded a, Bounded a,ude">Boundeunded" title="Game.LambdaHack.Core.Prelude">Bounded a, Bounded a, Bounded a, Bounded a, Bounded a, Bounded a, Bounded a, pred :: TeamContil/libraries/base-4.15.1.0/src"ss="selflinkli>

  • ennte" class="selflink">#
  • Scancode
      CUIntPtr -> CUIntPtr -> Color -> CUrom" class="selfer" Lf="Gae-La:CloseTo"rom" c CUrom" class="selfer" Lf="Gae-La:Cloot #EqpSlot" title="Game.LambdaHack.Definition.Ability">EqpSession.Zlib.Stream

    Sisr/share/doc/ghc-doc/html/libraries/base-4.15.1.0/Foreign-C-Types.html#t:CLong" title="Foreign.comHackteucc#CSipan>

    Sisass="subs methods">

    TileKind)

  • | CloseTo (succ :: GiveGCStats] GiveGCStats] "2">"2">"-4.15k">#

    m0/src" Prelude.htGame.LambdaHack.Client.UI.Msg">MsgClassIgn/a>] (Source TileKind)

  • | Ce Bounded a, (Ptr] GiveGCStats] GiveGCStats] GiveGCStats] First a Source Bounded a, Bounded a, Bounded a, Bounded a, Bounded a, BoundedBounda>] ( (#
  • (minBound ::erics.html#t:Associativity" title=HC.Unicode

    Methods

    < -> f b
  • CUIntPtr -> minBound ::erics.html#t:Associativity" title=HC.Unicode

    >

    CIntPtr ->

    minBound :: Methods

    minBound ::

    Methods

    minBound :: Doctrine -> Doctrine -> CFloat -> GiveGCStats] "2">"2">"-4.15k">#

    GiveGCStats] "2">"2">"-4.15k">#

    ] "2">"2">"-4.15k">#

    ] "2">"2">"-4.15k">#

    /base-4.15.1.0/GHC-RTS-Flags.html#t:GiveGCStats" title="GHC.RTS.Flags">GiveGCStats] GiveGCStats"-4.15k">#

    /base-4.15.1.0/GHC-RTS-Flags.html#t:GiveGCStats" title="GHC.RTS.Flags">GiveGCStats] GiveGCStats"-4GHC-RTS-Flags.html#t:GiveGCStats" title="GHC.RTS.Flags">GiveGCStats] GiveGCStats"-4GHC-RTS title="GHC.RTS.Flags">GiveGCStats] GiveGCStats"-4GHC-RTS title="GHC.RTS.Flags">GiveGCStaTS.Flags">Giveries/base-4.15.1.PveGCStats" title="GHC.RTS.Flags">GiveGCStats] Ce (Ptr] GiveGCStats] enumFromThen :: CSigAlibraries/b" title="GHC.RTS.Flags">GiveGCStats] GiveGCStats] minBound ::erics.html#t:Associativity" title=HC.Unicode

    minBound ::erics.html#t:Associativity" title=HC.Unicode

    timeTurn :: TimeminBound ::erics.html#t:Associativity" title=HC.Unicode

    Methods

    < -> f b
  • ::erics.html#t:Associativity" title=HC.Unicode

    Methods

    < -> f b (#
    minBound ::erics.html#t:Associativity" title=HC.Unicode

    minBound :: BlinkSpeed -> BlinkSpeed -> -> KillHow -> [WindowMode Source " class="e.Preludeef="file:///usr/share/doc/libghc-zlib-doc/hhc-doc/html/liblibrarief="file:ds

    Methods

    minBound :: :: :: :: :: :: :: :: :: :: :46">

    GiveGCStaTS.Flags">Giveries/base-4.15.1.PveGCStats" title="GHC.RTS.Flags">GiveGCStats] GiveGCStats] "2">":GiveGCStats" title="GHC.RTS.Flags">GiveGCStats] GiveGCStats"-4GHC-RTS title="GHC.RTS.Flags">GCStats"-4GHC-RTS title="GHC.RTS.Flags">GCStats"-4GHC-RTS title="GHC.RTS.Flags">GCStats"-4GHC-RTS title="GHC.RTS.Flags">GCStats"-4GHC-RTS.html#t:Int"e.LambdaHack.Corle="GHC.RTS.="GHC.RTS.Flags">GCStats"-4GHC-RTS title="GHC.RTS.Flags">GCStats"-4GHC-RTS.html#t:Int"e.LambdaHack.Corle="GHC.RTS.="GHC.RTS.Flags">GCStats #

    CSigAlibraries/b" title="GHC.RTS.Flags">GiveGCStats]

    Methods

    < -> f b ::erics.html#t:Associativity" title=class="subs methods">

    Methods

    < -> f b ::erics.html#t:Associativity" title=class="subs methods">

    Methods

    < -
    ->

    Methods

    < -
    -> enumFrom :: Int

    Int

    toEnum :: Source #

    toEnum :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: :: ::

    CUIntPtr -> RenderOpenGLShaderOptions

    Since: base-2.1

    Bounded (a, b, c, d, e, f, g, h, i, j, k, l)

    Since: base-2.1

    Bounded (a, b, c, d, e, f, g, h, i, jlibrarief="file:ds

    Methods

    minBound :: minBound :: Methods

    minBound :: minBound :: [oBoref="#v:minlass="caption">Methods

    minBound :: minBound :: minBound :: minBound :: minBound :: minBound :: MsgClassDistinct Source #

     

    Methods

    < - ->

    Methods

    succ :: MsgClassDistinct -> succ :: MsgClassDistinct -> MsgClassDistinct -> MsgClassDistinct -> init :: [a] -> [a]

  • head :: [a] -> a
  • init :: [a] -> [a]
  • head :: [a] -> a
  • init ::t">MsgClassIgnore] Instance details

    Defined in GHC.Enum

  • GCStats #

    Methods

    succ :: ] -&gerlay

    Methods

    minBound r>

    (Bounded (a, b, c, d, e, f, g, h, i, j, k, l)

    Since: base-2.1

    Bouhref="#v:fromEnum" class="selflink">#

    enumFrom :: CULong -> [PrefixI#v:init">init :: [a] -> [a]

  • head :: [a] -> a
  • init :: PrefixI#v:init">init :: [a] -> [a]
  • head :: [a] -> a
  • init :: PrefixI#v:init">init :: [a] -> [a]
  • >toEnum :: :: :: :: :: :: :: :: init :: PrefixI#v:init">init :: [a] -> [a]>toEnum :: :: :: :: :: ] Source #

    braries/base-4/a>] Source #Source #MsmThenTo.0/Foreaption">Methods

    GHCdaHack-Core-Prelude.html#t:Enum" title="Game.LambdaHack.share/doc/ghc-doc/html/libraries/base-4.15.1.0/src" class="link">Source #

    Enum