class Crystal::Macros::ArrayLiteral
Overview
An array literal.
Defined in:
compiler/crystal/macros.crInstance Method Summary
-
#+(other : ArrayLiteral) : ArrayLiteral
Similar to
Array#+
. -
#[](index : NumberLiteral) : ASTNode
Similar to
Array#[]
, but returnsNilLiteral
on out of bounds. -
#all?(&block) : BoolLiteral
Similar to
Enumerable#all?
-
#any?(&block) : BoolLiteral
Similar to
Enumerable#any?
-
#argify : MacroId
Returns a
MacroId
with all of this array's elements joined by commas. -
#empty? : BoolLiteral
Similar to
Array#empty?
-
#find(&block) : ASTNode | NilLiteral
Similar to
Enumerable#find
-
#first : ASTNode | NilLiteral
Similar to
Array#first
, but returns a NilLiteral if the array is empty. -
#includes?(node : ASTNode) : BoolLiteral
Similar to
Enumerable#includes?(obj)
. -
#join(separator) : StringLiteral
Similar to
Enumerable#join
-
#last : ASTNode | NilLiteral
Similar to
Array#last
, but returns a NilLiteral if the array is empty. -
#map(&block) : ArrayLiteral
Similar to
Enumerable#map
-
#of : ASTNode | Nop
Returns the type specified at the end of the array literal, if any.
-
#reject(&block) : ArrayLiteral
Similar to
Enumerable#reject
-
#select(&block) : ArrayLiteral
Similar to
Enumerable#select
-
#shuffle : ArrayLiteral
Similar to
Array#shuffle
-
#size : NumberLiteral
Similar to
Array#size
-
#sort : ArrayLiteral
Similar to
Array#sort
-
#type : Path | Nop
Returns the type that receives the items of the array.
-
#uniq : ArrayLiteral
Similar to
Array#uniq
Instance methods inherited from class Crystal::Macros::ASTNode
!=(other : ASTNode) : BoolLiteral
!=,
==(other : ASTNode) : BoolLiteral
==,
class_name : StringLiteral
class_name,
id : MacroId
id,
raise(message) : NoReturn
raise,
stringify : StringLiteral
stringify
Instance methods inherited from class Reference
==(other)==(other : self) ==, dup dup, hash hash, inspect(io : IO) : Nil inspect, object_id : UInt64 object_id, same?(other : Reference)
same?(other : Nil) same?, to_s(io : IO) : Nil to_s
Instance methods inherited from class Object
!=(other)
!=,
!~(other)
!~,
==(other)
==,
===(other)===(other : YAML::Any)
===(other : JSON::Any) ===, =~(other) =~, class class, crystal_type_id crystal_type_id, dup dup, hash hash, inspect(io : IO)
inspect inspect, itself itself, not_nil! not_nil!, tap(&block) tap, to_json to_json, to_pretty_json(indent : String = " ")
to_pretty_json(io : IO, indent : String = " ") to_pretty_json, to_s
to_s(io : IO) to_s, to_yaml
to_yaml(io : IO) to_yaml, try(&block) try
Class methods inherited from class Object
==(other : Class)
==,
===(other)
===,
cast(other) : self
cast,
clone
clone,
dup
dup,
from_json(string_or_io) : selffrom_json(string_or_io, root : String) : self from_json, from_yaml(string : String) : self from_yaml, hash hash, inspect(io) inspect, name : String name, nilable? nilable?, to_s(io) to_s, |(other : U.class) forall U |
Instance Method Detail
Similar to Array#[]
, but returns NilLiteral
on out of bounds.
Returns a MacroId
with all of this array's elements joined
by commas.
Similar to Array#first
, but returns a NilLiteral if the array is empty.
Similar to Array#last
, but returns a NilLiteral if the array is empty.
Returns the type specified at the end of the array literal, if any.
This refers to the part after brackets in [] of String
.
Returns the type that receives the items of the array.
This refers to the part before brackets in MyArray{1, 2, 3}