Displaying 1 result from an estimated 1 matches for "namedaccumulator".
2019 Aug 01
5
RFC: Strong typedef for LLVM
...public HasEqualityCompare<NamedCounter<Tag>>,
public HasIncrement<NamedCounter<Tag>> { // ++
public:
using StrongTypedef<Tag, int64_t>::StrongTypedef;
};
template<typename Tag, typename Int = int64_t>
class NamedAccumulator : public StrongTypedef<Tag, Int>,
public HasEqualityCompare<NamedAccumulator<Tag>>,
public HasAccumulate<NamedAccumulator<Tag>> { // +=
public:
using StrongTypedef<Tag, int64_t>::StrongTypedef;
};
Pr...