Skip to content
View moonmagian's full-sized avatar
  • BeiJing
Block or Report

Block or report moonmagian

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. header only library to help implemen... header only library to help implementing concept for a class
    1
    // This header only library is usued to check whether a class satisfies a concept.
    2
    // When compiling, an error will happen if the class doesn't satisfy the concept.
    3
    // IDEs like QtCreator and CLion will also display an error for it whiling editing.
    4
    // This is useful when you want to satisfy a concept by implementing methods one by one.
    5
    // (without checking the definition of the concept over time).