Beispiel #1
0
 void SetFirst( VALUE first ) {
     if (first.IsHeapObject()) {
         first.GetObject()->RefCount++;
     }
     _first = first;
 }
Beispiel #2
0
 void SetRest( VALUE rest ) {
     if (rest.IsHeapObject()) {
         rest.GetObject()->RefCount++;
     }
     _rest = rest;
 }