Created
January 27, 2010 22:22
-
-
Save nddrylliog/288212 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// check for a blank character; that is, a space or a tab | |
/* | |
isBlank: func -> Bool { | |
this == ' ' || this == '\t' | |
} | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
// check for a blank character; that is, a space or a tab | |
isBlank: func -> Bool { | |
this == ' ' || this == '\t' | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment