Glossary coding Term Page

Scalar type

A type that represents a single value at a time (`i32`

scalar-type #coding#rust
Korean version

Related Concepts

Core Idea

Scalar type is A type that represents a single value at a time (i32, f64, bool, char, and so on). It usually makes the most sense alongside Immutability, Tuple, Array.

Why It Matters Here

Mathbong reuses this term across rust posts as shared vocabulary.

Posts Mentioning This Concept