class Liquid::Blank

Defined in:

liquid/blank.cr

Instance Method Summary

Instance methods inherited from class Liquid::Drop

[](method : String) : Liquid::Any [], call(method : String) : Liquid::Any call

Instance Method Detail

def ==(str : String) #

[View source]
def ==(array : Array) #

[View source]
def ==(_nil : Nil) #

[View source]
def ==(other : Any) #

[View source]
def call(method : String) : Liquid::Any #
Description copied from class Liquid::Drop

Called by StackMachine to call a method from this Drop. Only public methods without parameters can be called here


def inspect(io : IO) #
Description copied from class Reference

Appends a String representation of this object which includes its class name, its object address and the values of all instance variables.

class Person
  def initialize(@name : String, @age : Int32)
  end
end

Person.new("John", 32).inspect # => #<Person:0x10fd31f20 @name="John", @age=32>

[View source]