plusInteger module:GHC.Integer -package:integer-gmp

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

Example

>>> plusInteger 3 2
5
>>> (+) 3 2
5