Struct ruby_prism::ArrayNode
source · pub struct ArrayNode<'pr> { /* private fields */ }
Expand description
Represents an array literal. This can be a regular array using brackets or a special array using % like %w or %i.
[1, 2, 3]
^^^^^^^^^
Implementations§
source§impl<'pr> ArrayNode<'pr>
impl<'pr> ArrayNode<'pr>
sourcepub fn flags(&self) -> pm_node_flags_t
pub fn flags(&self) -> pm_node_flags_t
Returns the flags of this node.
sourcepub fn is_contains_splat(&self) -> bool
pub fn is_contains_splat(&self) -> bool
if array contains splat nodes
sourcepub fn opening_loc(&self) -> Option<Location<'pr>>
pub fn opening_loc(&self) -> Option<Location<'pr>>
Returns the opening_loc
param
sourcepub fn closing_loc(&self) -> Option<Location<'pr>>
pub fn closing_loc(&self) -> Option<Location<'pr>>
Returns the closing_loc
param
Trait Implementations§
Auto Trait Implementations§
impl<'pr> RefUnwindSafe for ArrayNode<'pr>
impl<'pr> !Send for ArrayNode<'pr>
impl<'pr> !Sync for ArrayNode<'pr>
impl<'pr> Unpin for ArrayNode<'pr>
impl<'pr> !UnwindSafe for ArrayNode<'pr>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more