Code Monkey home page Code Monkey logo

member_count's Introduction

Archived

See the new static-reflection repo that houses this utility nitronoid/looking-glass.


member_count


A constexpr utility to determine the number of member fields in an aggregate struct.

Example usage


// Struct with three member variables
struct S
{
    char a, b, c;
};

// Check that S has three members at compile time
static_assert(stdex::member_count<S> == 3, "S does not have 3 members.");

Requirements


This lib requires GCC version 9 or above due to a bug fix provided for uniform aggregate initialisation of unions. I haven't traced back the minimum MSVC version yet, but it does work with v19.14 and above.

  • GCC > 9.0.0
  • Clang > 3.5.0
  • MSVC > 19.14 (probably lower?)
  • C++14

Build


The utility is header only, simply include "member_count.hpp" to use (or "member_count_cpp20.hpp" to use concepts).

Tests


The unit tests have been added as static_asserts (because why not?) and are included at the end of the main header so they are always checked. A dummy translation unit has been provided for easy of checking the compilation:

$(CXX) test/test.cpp

TODO


  • Support for anonymous unions and unnamed structs.
  • Portable across GCC and Clang.
  • Basic unit tests.
  • Trace minimum MSVC version.
  • More unit tests.
  • Configurable namespace.
  • Continuous integration.

member_count's People

Contributors

nitronoid avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

jkred369

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.