Changeset 852
- Timestamp:
- 04/29/07 15:42:24 (2 years ago)
- Files:
-
- ruport/trunk/lib/ruport/data/record.rb (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
ruport/trunk/lib/ruport/data/record.rb
r813 r852 6 6 module Ruport::Data 7 7 8 #9 8 # === Overview 10 9 # … … 17 16 include Enumerable 18 17 19 #20 18 # Creates a new Record object. If the <tt>:attributes</tt> 21 19 # keyword is specified, Hash-like and Struct-like … … 72 70 end 73 71 74 #75 72 # Sets the <tt>attribute</tt> list for this Record. 76 73 # (Dangerous when used within Table objects!) … … 90 87 ################## 91 88 92 #93 89 # Allows either Array or Hash-like indexing. 94 90 # … … 107 103 end 108 104 109 #110 105 # Allows setting a <tt>value</tt> at an <tt>index</tt>. 111 106 # … … 150 145 ################ 151 146 152 #153 147 # Converts a Record into an Array. 154 148 # … … 209 203 end 210 204 211 #212 205 # Allows you to change the order of or reduce the number of columns in a 213 206 # Record. … … 242 235 end 243 236 244 #245 237 # Provides a unique hash value. If a Record contains the same data and 246 238 # attributes as another Record, they will hash to the same value, even if
