Skip to content

Commit a86fbca

Browse files
author
Stefania
authored
Merge pull request #38 from robsoncouto/patch-33
Translated isHexadecimalDigit() function
2 parents 000412d + 9606d18 commit a86fbca

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

Language/Functions/Characters/isHexadecimalDigit.adoc

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "isHexadecimalDigit()"
33
categories: [ "Functions" ]
4-
subCategories: [ "Characters" ]
4+
subCategories: [ "Caracteres" ]
55
---
66

77
:source-highlighter: pygments
@@ -17,25 +17,25 @@ subCategories: [ "Characters" ]
1717
--
1818

1919
[float]
20-
=== Description
21-
Analyse if a char is an hexadecimal digit (A-F, 0-9). Returns true if thisChar contains an hexadecimal digit.
20+
=== Descrição
21+
Analisa se uma caractere é um digito hexadecimal (A-F, 0-9). Retorna true se thisChar contém um digito hexadecimal.
2222
[%hardbreaks]
2323

2424

2525
[float]
26-
=== Syntax
26+
=== Sintaxe
2727
[source,arduino]
2828
----
2929
`isHexadecilamDigit(thisChar)`
3030
----
3131

3232
[float]
33-
=== Parameters
34-
`thisChar`: variable. *Allowed data types:* char
33+
=== Parâmetros
34+
`thisChar`: variável. *Tipos de dados permitidos:* char
3535

3636
[float]
37-
=== Returns
38-
`true`: if thisChar is an hexadecimal digit.
37+
=== Retorna
38+
`true`: se thisChar é um digito hexadecimal.
3939

4040
--
4141
// OVERVIEW SECTION ENDS
@@ -47,11 +47,11 @@ Analyse if a char is an hexadecimal digit (A-F, 0-9). Returns true if thisChar c
4747
--
4848

4949
[float]
50-
=== Example Code
50+
=== Código de Exemplo
5151

5252
[source,arduino]
5353
----
54-
if (isHexadecimalDigit(this)) // tests if this is an hexadecimal digit
54+
if (isHexadecimalDigit(this)) // testa se this é um digito hexadecimal
5555
{
5656
Serial.println("The character is an hexadecimal digit");
5757
}
@@ -71,13 +71,13 @@ else
7171
--
7272

7373
[float]
74-
=== See also
74+
=== Ver Também
7575

7676
[role="language"]
77-
* #LANGUAGE# link:../../../variables/data-types/char[char]
78-
* #LANGUAGE# link:../../../structure/control-structure/if[if (conditional operators)]
79-
* #LANGUAGE# link:../../../structure/control-structure/while[while (conditional operators)]
80-
* #LANGUAGE# link:../../communication/serial/read[read()]
77+
* #INGUAGEM# link:../../../variables/data-types/char[char]
78+
* #LINGUAGEM# link:../../../structure/control-structure/if[if (operadores condicionais)]
79+
* #LINGUAGEM# link:../../../structure/control-structure/while[while (operadores condicionais)]
80+
* #LINGUAGEM# link:../../communication/serial/read[read()]
8181

8282
--
83-
// SEE ALSO SECTION ENDS
83+
// SEE ALSO SECTION ENDS

0 commit comments

Comments
 (0)