Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions p4-16/spec/P4-16-spec.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1890,8 +1890,10 @@ Operations on values of type `match_kind` are described in
==== The Boolean type

The Boolean type `bool` contains just two values, `false` and `true`.
Boolean values are not integers or bit-strings. Operations that can
be performed on booleans are described in Section <<sec-bool-exprs>>.
Boolean values are not integers or bit-strings. Boolean values can be
serialized and deserialized, where `false` is serialized as 0 and `true`
is serialized as 1. Operations that can be performed on booleans are
described in Section <<sec-bool-exprs>>.

[#sec-string-type]
==== Strings
Expand Down
Loading