AsyncSourceAsyncListNode

class Node

A linked list Node.

Definitions

def to_s

Signature

returns String

A string representation of the node.

Implementation

def to_s
	sprintf("#<%s:0x%x>", self.class.name, object_id)
end

alias inspect to_s

Signature

returns String

A string representation of the node.

Discussion