class FFI::Clang::ParamCommandComment
Public Instance Methods
direction()
click to toggle source
# File lib/ffi/clang/comment.rb, line 222 def direction Lib.param_command_comment_get_direction(@comment) end
direction_explicit?()
click to toggle source
# File lib/ffi/clang/comment.rb, line 218 def direction_explicit? Lib.param_command_comment_is_direction_explicit(@comment) != 0 end
index()
click to toggle source
# File lib/ffi/clang/comment.rb, line 214 def index Lib.param_command_comment_get_param_index(@comment) end
name()
click to toggle source
# File lib/ffi/clang/comment.rb, line 200 def name Lib.extract_string Lib.param_command_comment_get_param_name(@comment) end
text()
click to toggle source
# File lib/ffi/clang/comment.rb, line 204 def text self.map(&:text).join("") end
Also aliased as: comment
valid_index?()
click to toggle source
# File lib/ffi/clang/comment.rb, line 210 def valid_index? Lib.param_command_comment_is_param_index_valid(@comment) != 0 end