Represents a sorted, dated and typed list of trends.
To find out when this Trendline was created query the as_of attribute. To find out what type Trendline is use the type attribute. You can iterator over the trends in the Trendline with each or by index, whichever you prefer.
Spaceship operator definition needed by Comparable mixin for sort, etc.
# File lib/twitter/model.rb, line 233 def <=>(other) self.type === other.type && self.as_of <=> other.as_of end
Generated with the Darkfish Rdoc Generator 2.