Skip to content

Translated isHexadecimalDigit() function #38

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 6, 2017
Merged
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
32 changes: 16 additions & 16 deletions Language/Functions/Characters/isHexadecimalDigit.adoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "isHexadecimalDigit()"
categories: [ "Functions" ]
subCategories: [ "Characters" ]
subCategories: [ "Caracteres" ]
---

:source-highlighter: pygments
Expand All @@ -17,25 +17,25 @@ subCategories: [ "Characters" ]
--

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


[float]
=== Syntax
=== Sintaxe
[source,arduino]
----
`isHexadecilamDigit(thisChar)`
----

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

[float]
=== Returns
`true`: if thisChar is an hexadecimal digit.
=== Retorna
`true`: se thisChar é um digito hexadecimal.

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

[float]
=== Example Code
=== Código de Exemplo

[source,arduino]
----
if (isHexadecimalDigit(this)) // tests if this is an hexadecimal digit
if (isHexadecimalDigit(this)) // testa se this é um digito hexadecimal
{
Serial.println("The character is an hexadecimal digit");
}
Expand All @@ -71,13 +71,13 @@ else
--

[float]
=== See also
=== Ver Também

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

--
// SEE ALSO SECTION ENDS
// SEE ALSO SECTION ENDS