Skip to content

Instantly share code, notes, and snippets.

@yosshi4486
Created May 2, 2021 03:57
Show Gist options
  • Select an option

  • Save yosshi4486/d67c5d9275b46f538c5f89afa8ea2151 to your computer and use it in GitHub Desktop.

Select an option

Save yosshi4486/d67c5d9275b46f538c5f89afa8ea2151 to your computer and use it in GitHub Desktop.
ImageCode of CanMove.
extension Array where Element == List {
    func canMove(into otherContainer: List) -> Bool {
        return allSatisfy({ $0.canMove(into: otherContainer) })
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment