Ascii
Ascii character codes and Ascii related extension methods. See: https://www.ascii-code.com/
Attributes
- Source
- Ascii.scala
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
Ascii.type
Members list
Value members
Concrete fields
Acknowledge
Bell, Alert
Backspace
Cancel
Carriage Return - also \r
Device Control One (XON)
Device Control Two
Device Control Three (XOFF)
Device Control Four
Delete
Data Link Escape
End of medium
Enquiry
End of Transmission
Escape
End of Transmission Block
End of Text
Form Feed
File Separator
Group Separator
Horizontal Tab - also \t
Line Feed - also \n
Negative Acknowledge
Null character
Record Separator
Shift In
Shift Out
Start of Heading
Start of Text
Substitute
Synchronous Idle
Unit Separator
Vertical Tabulation
Extensions
Extensions
Evaluates as true if the character is an Ascii control character, otherwise false.
Evaluates as true if the character is an Ascii control character, otherwise false.
Attributes
- Source
- Ascii.scala
Evaluates as true if the character is not an Ascii control character or DEL otherwise false.
Evaluates as true if the character is not an Ascii control character or DEL otherwise false.
While DEL can be considered an ascii-printable character, an end user is likely to want to treat a DEL input separate from other keystrokes, as the character can be displayed like this:
scala> println(s"Foo${Ascii.DEL}bar")
Foo bar
Attributes
- Source
- Ascii.scala