Skip to content

Instantly share code, notes, and snippets.

@laevandus
Created March 10, 2024 19:11
Show Gist options
  • Save laevandus/6172332c61eeaa2bc566d3ea62b7555e to your computer and use it in GitHub Desktop.
Save laevandus/6172332c61eeaa2bc566d3ea62b7555e to your computer and use it in GitHub Desktop.
// Base collection is an Array
private var items = WrappedCollection<Item>([Item(…), Item(…)])
// Base collection is an OtherCustomCollection type
func received(_ items: OtherCustomCollection<Item>) {
self.items = WrappedCollection(items)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment