Skip to main content

eosio::ignore

Module: Core API / Ignore

More...

#include <ignore.hpp>

Detailed Description

template <typename T >
struct eosio::ignore;

Note: This restriction will be relaxed in a later release. Currently non-ignore types can not succeed an ignore type in a method definition, i.e. void foo(float, ignore<int>) is allowed and void foo(float, ignore<int>, int) is not allowed.

Tells the datastream to ignore this type, but allows the abi generator to add the correct type.

Currently non-ignore types can not succeed an ignore type in a method definition, i.e. void foo(float, ignore<int>) is allowed and void foo(float, ignore<int>, int) is not allowed.


Updated on 2022-12-05 at 15:38:08 +0000