arc4random_uniform method

int arc4random_uniform(
  1. int __upper_bound
)

Implementation

int arc4random_uniform(int __upper_bound) {
  return _arc4random_uniform(__upper_bound);
}