Class: ICU::Lib::VersionInfo
- Inherits:
-
FFI::MemoryPointer
- Object
- FFI::MemoryPointer
- ICU::Lib::VersionInfo
- Extended by:
- FFI::DataConverter
- Defined in:
- lib/ffi-icu/lib.rb
Constant Summary collapse
- MaxLength =
4
- MaxStringLength =
20
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ VersionInfo
constructor
A new instance of VersionInfo.
- #to_a ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize ⇒ VersionInfo
Returns a new instance of VersionInfo.
175 176 177 |
# File 'lib/ffi-icu/lib.rb', line 175 def initialize super :uint8, MaxLength end |
Class Method Details
.native_type ⇒ Object
171 172 173 |
# File 'lib/ffi-icu/lib.rb', line 171 def self.native_type FFI::Type::POINTER end |
Instance Method Details
#to_a ⇒ Object
179 180 181 |
# File 'lib/ffi-icu/lib.rb', line 179 def to_a read_array_of_uint8(MaxLength) end |
#to_s ⇒ Object
183 184 185 186 187 |
# File 'lib/ffi-icu/lib.rb', line 183 def to_s buffer = FFI::MemoryPointer.new(:char, MaxStringLength) Lib.u_versionToString(self, buffer) buffer.read_string_to_null end |