Go to the first, previous, next, last section, table of contents.


trt_selector_args

struct trt_selector_args
{
  int num;

  enum trt_type_encoding args[0];
};

A trt_selector_args describes the arguments to or return value from a method. In this context, all values are de-tupled and concatenated. Thus, a selector accepting an int and a float has the same argument description as a selector accepting a tuple (int, float). For the arguments, this excludes the implicit two first arguments, self and cmd.

num
The number of entries in args.
args
The description for each flat argument.


Go to the first, previous, next, last section, table of contents.