Skip to content

Commit

Permalink
changed name to EnumerateElements
Browse files Browse the repository at this point in the history
  • Loading branch information
Kasdejong committed Dec 9, 2024
1 parent c1bc9fc commit 2b61d3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Hl7.Fhir.Base/ElementModel/PocoNodeOrList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public record PocoNode(Base Poco, PocoNodeOrList? Parent, int? Index, string? Na
: PocoNodeOrList(Parent, Name ?? Poco.TypeName), IScopedNode, ISourceNode, IFhirValueProvider, IResourceTypeSupplier, IAnnotatable
{
public IEnumerable<PocoNodeOrList> Children() =>
Poco.GetElementPairs()
Poco.EnumerateElements()
.Select(ep =>
nodeFor(ep.Key, ep.Value)
);
Expand Down

0 comments on commit 2b61d3c

Please sign in to comment.