class FT::ListRec

www.freetype.org/freetype2/docs/reference/ft2-list_processing.html#FT_ListRec

Public Instance Methods

empty?() click to toggle source

define FT_IS_EMPTY( list ) ( (list).head == 0 )

# File lib/ft-ffi/struct/list/rec.rb, line 19
def empty?
  self[:head] == 0
end
head() click to toggle source
# File lib/ft-ffi/struct/list/rec.rb, line 6
def head; end
head=(v) click to toggle source
# File lib/ft-ffi/struct/list/rec.rb, line 7
def head=(v); end
inspect() click to toggle source
# File lib/ft-ffi/struct/list/rec.rb, line 23
def inspect
  members.map { |member| "#{member.inspect} = #{self[member]}" }.join(', ')
end
tail() click to toggle source
# File lib/ft-ffi/struct/list/rec.rb, line 8
def tail; end
tail=(v) click to toggle source
# File lib/ft-ffi/struct/list/rec.rb, line 9
def tail=(v); end
to_s() click to toggle source
# File lib/ft-ffi/struct/list/rec.rb, line 14
def to_s
  inspect
end