Skip to content

Array and Dictionary.values is missing forEach-method #11

Description

@weyert

I would like to implement the forEach-method (see: https://developer.apple.com/documentation/swift/dictionary/values/2894113-foreach) and I was wondering what the best approach is to do.

I am not sure what the best approach would to implement this? Can I import SwiftBaseLibrary in my own projects (e.g. SharedProject) and then leverage it and make my own changes and then make pull requests for them?

The library is suggesting that it's available through Sequence:

public func forEach(@noescape body: (T) throws -> ()) rethrows {

but I am not getting it working when I do something like:

typealias LocationNode = TreeNode<Location>
var availableRootNodes = [TreeNode<Location>]()

// Code that populates the above array
for node in dictionary.Values {
   availableRootNodes.append(node)
}

// Attempt to iterate through the list
availableRootNodes.forEach { (value) in
   NSLog("Item has been discovered")
}

If I try to compile code like above I am getting the error:

E: No member "forEach " on type "Array<TreeNode<Location>!>" [/Users/weyertdeboer/Development/Projects/x/x/version-3/config-app/SharedProject/LocationService.swift (161)]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions