> ## Documentation Index
> Fetch the complete documentation index at: https://docs.starknet.io/llms.txt
> Use this file to discover all available pages before exploring further.

# core::keccak::keccak_u256s_le_inputs

Computes the Keccak-256 hash of multiple `u256` values in little-endian format.

## Signature

```rust theme={null}
pub fn keccak_u256s_le_inputs(mut input: Span) -> u256
```

#### Arguments

* `input` - A span of little-endian `u256` values to be hashed

#### Returns

The 32-byte Keccak-256 hash as a little-endian `u256`

## Examples

```rust theme={null}
use core::keccak::keccak_u256s_le_inputs;

let input: Span = array![0, 1, 2].span();
assert!(keccak_u256s_le_inputs(input) ==
0xf005473605efc7d8ff67d9f23fe2e4a4f23454c12b49b38822ed362e0a92a0a6);
```
