SetProtocol
Protocol to Swift
Adding the - Proposal: SE-TBD
- Author(s): Dave DeLong
- Review manager: TBD
- Status: TBD
SetProtocol
Protocol to Swift#!/bin/sh | |
set -e | |
NINJA_RELEASE_ASSERT_DIR="${HOME}/Documents/workspaces/xcode/github/apple/build/Ninja-ReleaseAssert" | |
SOURCE_ROOT="${HOME}/Documents/workspaces/xcode/github/apple" | |
echo "Updating sources (except SwiftPM)" | |
${SOURCE_ROOT}/swift/utils/update-checkout --skip-repository swiftpm | |
echo "Done updating sources" |
import Cocoa | |
// Missing isWord | |
func isWord(string: String) -> Bool { | |
if let _ = Int(string) { return false } | |
let range = NSSpellChecker.shared().checkSpelling(of: string, startingAt: 0) | |
return range.location == NSNotFound | |
} | |
/*: |