TypeScript and Playground練習問題集更新情報
WIP
| import Combine | |
| import FirebaseAuth | |
| public struct CombineAuth { | |
| fileprivate let auth: Auth | |
| } | |
| extension CombineAuth { | |
| public enum Error: Swift.Error { |
TypeScript and Playground練習問題集更新情報
WIP
以下転載:
| // (string, swift, bytes, data, buffer, cstring) | |
| print("--- using nulTerminated ---") | |
| let x : String = "hello" | |
| let buf = x.nulTerminatedUTF8 | |
| print(buf) | |
| print("\n--- using [UInt8] ---") | |
| let buf2 : [UInt8] = [UInt8](x.utf8) | |
| print(buf2) |