|
|
4 年之前 | |
|---|---|---|
| .. | ||
| README.md | f63169608e Implicit conversions (#820) | 4 年之前 |
| implicit_conversions.md | 93a002a21a Avoid confusing description of "equivalent". (#843) | 4 年之前 |
Expressions are the portions of Carbon syntax that produce values. Because types in Carbon are values, this includes anywhere that a type is specified.
fn Foo(a: i32*) -> i32 {
return *a;
}
Here, the parameter type i32*, the return type i32, and the operand *a of
the return statement are all expressions.
When an expression appears in a context in which an expression of a specific type is expected, implicit conversions are applied to convert the expression to the target type.
fn Bar(n: i32);
fn Baz(n: i64) {
// OK, same as Bar(n as i32)
Bar(n);
}