dph-lifted-vseg-0.7.0.1: Data Parallel Haskell lifted array combinators.

Safe HaskellNone

Data.Array.Parallel.Prelude.Int

Contents

Synopsis

Documentation

data Int

A fixed-precision integer type with at least the range [-2^29 .. 2^29-1]. The exact range for a given implementation can be determined by using minBound and maxBound from the Bounded class.

Ord

(==) :: Int -> Int -> Bool

(/=) :: Int -> Int -> Bool

(<) :: Int -> Int -> Bool

(<=) :: Int -> Int -> Bool

(>) :: Int -> Int -> Bool

(>=) :: Int -> Int -> Bool

min :: Int -> Int -> Int

max :: Int -> Int -> Int

Num

(+) :: Int -> Int -> Int

(-) :: Int -> Int -> Int

(*) :: Int -> Int -> Int

negate :: Int -> Int

abs :: Int -> Int

Integral

div :: Int -> Int -> Int

mod :: Int -> Int -> Int

sqrt :: Int -> Int

Enum