warriordog / ActivityPubSharp

Modular implementation of ActivityPub in C#
https://warriordog.github.io/ActivityPubSharp/
Mozilla Public License 2.0
46 stars 10 forks source link

ASCollection: implement IEnumerable #110

Closed CreggHancock closed 1 year ago

CreggHancock commented 1 year ago

Resolves #43

It does not implement the generic IEnumerable<T> as OrderedCollection is no longer generic. If we still desire it to implement a generic IEnumerable then we'll have to revert or partially revert this, but I think implementing as IEnumerable<Linkable<ASObject>> should hopefully not be a problem since that's what the Entity's LinkableList is essentially doing.

warriordog commented 1 year ago

@CreggHancock so sorry for the wait! this looks good.