Code Monkey home page Code Monkey logo

moderncpp's Introduction

moderncpp's People

Contributors

alandefreitas avatar unnamedk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

moderncpp's Issues

You got Hello World wrong !!!

std::endl should be used only whed it is required to std::flush() the write buffer, which is rarely needed. A basic program will never need it, so it should be

#include <iostream>

int main() {
    std::cout << "Hello world\n";
    return 0;
}

A few words about datetime snippets.

First of all, I would like to thank you for the work you have done.

  • Curl is mentioned in the cmake config, but there is not a single snippet on how to download and configure timezones. Add please. This reduced the googling time a bit.
  • It is worth writing in CAPITAL LETTERS that it is worthwhile to work extremely carefully with locales in a multithreaded project. And snippets using locales should not be used as is.

Thank you.

It's not clear what does 'unconstrained' mean in concepts snippets

// Define concept from conjunction of constraints
template<typename T> concept SignedNumber = Number<T> && std::is_signed_v<T>;

So you call Number<T> a constraint.

// Unconstrained function
template<Number T>
void max_value(T a, T b) {
    //...
}

Which is probably an example of a constrained function for std::is_arithmetic_v<T>

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.