---
title: "random::integer_using"
framework: Compute Graph
role: symbol
role_heading: Function
platforms: [iOS 27.0+, iPadOS 27.0+, macOS 27.0+, tvOS 27.0+, visionOS 27.0+]
path: computegraph/random/integer_using
---

# random::integer_using

Generates a pseudo-random 32-bit unsigned integer using a specific seed.

## Declaration

```swift
uint random::integer_using(uint seed)
```

## Parameters

- `seed`: The seed value to use for random number generation.

## Return Value

Return Value A pseudo-random 32-bit unsigned integer.

## Discussion

Discussion This function generates a random integer covering the full range of 32-bit unsigned values using the provided seed. The seed is not modified, allowing for reproducible random number generation. Use this when you need deterministic randomness or want to control the random sequence independently. note:
