auto sorted = object_.assumeSorted!((a, b) => a.name < b.name);

Sorry for the copy-paste. It should be "attributes" in place of "object_" here, of course:

auto sorted = attributes.assumeSorted!((a, b) => a.name < b.name);

Reply via email to