if (label == null) {
return getOutEdgeObjects().unmodifiable();
}
result = outCache.get(label);
if (result == null) {
NoteList edgeIds = getOutEdgesSet(label);
FastTable<Edge> edges = getParent().getEdgesFromIds(edgeIds);
if (edges != null) {
result = edges.atomic();
}
outCache.put(label, result);