Method code for $root.quota_byte_usage()

[Turn off line numbering]
  1: var total, obj;
  2: 
  3: for obj in (.managed()) {
  4:     if (!valid(obj))
  5:         continue;
  6:     total += obj.size();
  7: }
  8: return total;

["// Created as a part of ColdCore, see: @help Credit"]

the Cold Dark