You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously only Arduino's type alias, boolean was documented.
In this case it's arguable that the benefits of a slightly more descriptive type name outweigh the disadvantages of using a non-standard type. For that reason documenting bool and recommending its use instead of boolean is desirable.
Copy file name to clipboardExpand all lines: Language/Variables/Data Types/boolean.adoc
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,15 +11,22 @@ subCategories: [ "Tipos de Dados" ]
11
11
--
12
12
13
13
[float]
14
+
<<<<<<< HEAD
14
15
=== Descrição
15
16
O tipo `boolean` pode armazenar dois valores: `true` or `false`. (Cada variável `boolean` ocupa um byte na memória.)
17
+
=======
18
+
=== Description
19
+
`boolean` is a non-standard type alias for link:../../../variables/data-types/bool/[bool] defined by Arduino. It's recommended to instead use the standard type `bool`, which is identical.
0 commit comments