Relational Operator {gmp}R Documentation

Relational Operators

Description

Binary operators which allow the comparison of values in atomic vectors.

Usage

a < b
a > b
a <= b
a >= b
a == b
a != b
sign.bigz(a)

Arguments

a,b Object or vector of class bigz

Examples

  x <- as.bigz(8000)
  x ^ 300 < 2 ^x
  

[Package gmp version 0.3-1 Index]