class Crystal::Macros::SymbolLiteral
Overview
A symbol literal.
Defined in:
compiler/crystal/macros.crInstance Method Summary
-
#+(other : StringLiteral | CharLiteral) : SymbolLiteral
Similar to
String#+
. -
#=~(range : RegexLiteral) : BoolLiteral
Similar to
String#=~
. -
#[](range : RangeLiteral) : SymbolLiteral
Similar to
String#[]
. -
#camelcase(*, lower : BoolLiteral = false) : SymbolLiteral
Similar to
String#camelcase
. -
#capitalize : SymbolLiteral
Similar to
String#capitalize
. -
#chars : ArrayLiteral(CharLiteral)
Similar to
String#chars
. -
#chomp : SymbolLiteral
Similar to
String#chomp
. -
#count(other : CharLiteral) : NumberLiteral
Similar to
String#count
. -
#downcase : SymbolLiteral
Similar to
String#downcase
. -
#empty? : BoolLiteral
Similar to
String#empty?
. -
#ends_with?(other : StringLiteral | CharLiteral) : BoolLiteral
Similar to
String#ends_with?
. -
#gsub(regex : RegexLiteral, replacement : StringLiteral) : SymbolLiteral
Similar to
String#gsub
. -
#id : MacroId
Returns a
MacroId
for this string's contents. -
#includes?(search : StringLiteral | CharLiteral) : BoolLiteral
Similar to
String#includes?
. -
#lines : ArrayLiteral(StringLiteral)
Similar to
String#lines
. -
#size : NumberLiteral
Similar to
String#size
. -
#split(node : ASTNode) : ArrayLiteral(StringLiteral)
Similar to
String#split
. -
#split : ArrayLiteral(StringLiteral)
Similar to
String#split
. -
#starts_with?(other : StringLiteral | CharLiteral) : BoolLiteral
Similar to
String#starts_with?
. -
#strip : SymbolLiteral
Similar to
String#strip
. -
#titleize : SymbolLiteral
Similar to
String#titleize
. -
#to_i(base = 10)
Similar to
String#to_i
. -
#tr(from : StringLiteral, to : StringLiteral) : SymbolLiteral
Similar to
String#tr
. -
#underscore : SymbolLiteral
Similar to
String#underscore
. -
#upcase : SymbolLiteral
Similar to
String#upcase
.