public static void cfRelease(ID... ids) {
   for (ID id : ids) {
     if (id != null) {
       myFoundationLibrary.CFRelease(id);
     }
   }
 }