plusInteger module:GHC.Integer

Used to implement (+) for the Num typeclass. This gives the sum of two integers.

Example

>>> plusInteger 3 2
5
>>> (+) 3 2
5
Add two Integers