func encodeArray (ofObjCType : UnsafePointer<CChar>, count: Int, at: UnsafeRawPointer)
Encodes an array of the given Objective-C type, provided the number of items and a pointer.
項目の数とポインタを提供されて、この与えられたObjective-C型の配列をエンコードします。
func encode(Bool, forKey : String)
Encodes a Boolean value and associates it with the string
key
.
ブール値をエンコードして、それを文字列key
と結びつけます。
func encodeBycopyObject (Any?)
An encoding method for subclasses to override such that it creates a copy, rather than a proxy, when decoded.
それがデコードした時に、プロキシではなく、あるコピーを作成するような、オーバーライドをするサブクラスのためのエンコーディングメソッド。
func encodeByrefObject (Any?)
An encoding method for subclasses to override such that it creates a proxy, rather than a copy, when decoded.
それがデコードした時に、コピーではなく、あるプロキシを作成するような、オーバーライドをするサブクラスのためのエンコーディングメソッド。
func encodeBytes (UnsafeRawPointer?, length: Int)
Encodes a buffer of data of an unspecified type.
ある指定されない型のデータのパッファをエンコードします。
func encodeBytes (UnsafePointer<UInt8>?, length: Int, forKey : String)
Encodes a buffer of data, given its length and a pointer, and associates it with a string key.
データのバッファをエンコードします、それの長さとポインタを与えられて、そしてそれをある文字列キーと結びつけます。
func encodeConditionalObject (Any?)
An encoding method for subclasses to override to conditionally encode an object, preserving common references to it.
あるオブジェクトを、それへの通常の参照を保全して、条件付きでエンコードするようオーバーライドする、サブクラスに対するエンコーディングメソッド。
func encodeConditionalObject (Any?, forKey : String)
An encoding method for subclasses to override to conditionally encode an object, preserving common references to it, only if it has been unconditionally encoded.
あるオブジェクトを、それへの通常の参照を保全して、それが無条件にエンコードされた場合にのみ、それが条件付きでエンコードするようオーバーライドする、サブクラスに対するエンコーディングメソッド。
func encode(Data)
Encodes a given data object.
与えられたデータオブジェクトをエンコードします。
func encode(Double, forKey : String)
Encodes a double-precision floating point value and associates it with the string key.
倍精度浮動小数点値をエンコードして、それを文字列キーと結びつけます。
func encode(Float, forKey : String)
Encodes a floating point value and associates it with the string key.
浮動小数点値をエンコードして、それを文字列キーと結びつけます。
func encodeCInt (Int32, forKey : String)
Encodes a C integer value and associates it with the string key.
C整数値をエンコードして、それを文字列キーと結びつけます。
func encode(Int, forKey : String)
Encodes an integer value and associates it with the string key.
整数値をエンコードして、それを文字列キーと結びつけます。
func encode(Int32, forKey : String)
Encodes a 32-bit integer value and associates it with the string key.
32ビット整数値をエンコードして、それを文字列キーと結びつけます。
func encode(Int64, forKey : String)
Encodes a 64-bit integer value and associates it with the string key.
64ビット整数値をエンコードして、それを文字列キーと結びつけます。
func encode(Any?)
Encodes an object.
あるオブジェクトをエンコードします。
func encode(Any?, forKey : String)
Encodes an object and associates it with the string key.
あるオブジェクトをエンコードして、それを文字列キーと結びつけます。
func encode(NSPoint)
Encodes a point.
あるポイントをエンコードします。
func encode(NSPoint, forKey : String)
Encodes a point and associates it with the string key.
あるポイントをエンコードして、それを文字列キーと結びつけます。
func encode(NSRect)
Encodes a rectangle structure.
ある矩形構造体をエンコードします。
func encode(NSRect, forKey : String)
Encodes a rectangle structure and associates it with the string key.
ある矩形構造体をエンコードして、それを文字列キーと結びつけます。
func encodeRootObject (Any)
An encoding method for subclasses to override to encode an interconnected group of objects, starting with the provided root object.
相互連結されたいくらかのオブジェクトからなるあるグループを、提供されたルートオブジェクトで開始して、エンコードするようオーバーライドする、サブクラスに対するエンコーディングメソッド。
func encode(NSSize)
Encodes a size structure.
あるサイズ構造体をエンコードします。
func encode(NSSize, forKey : String)
Encodes a size structure and associates it with the given string key.
あるサイズ構造体をエンコードして、それを文字列キーと結びつけます。
func encodeValue (ofObjCType : UnsafePointer<CChar>, at: UnsafeRawPointer)
Encodes a value of the given type at the given address.
与えられたアドレスでのこの与えられた型のある値をエンコードします。