# Module std::bcs

*[Documentation index](/llms.txt) · [Full index](/llms-full.txt)*

Utility for converting a Move value to its binary representation in BCS (Binary Canonical.

Serialization). BCS is the binary encoding for Move resources and other non-module values
published on-chain. See https://github.com/diem/bcs#binary-canonical-serialization-bcs for more
details on BCS.

## Function to_bytes

Return the binary representation of v in BCS (Binary Canonical Serialization) format

```
public fun to_bytes&lt;MoveValue&gt;(v: &MoveValue): vector&lt;u8&gt;
```
