Skip to content

Instantly share code, notes, and snippets.

View Voltra's full-sized avatar
🎯
Focusing

Voltra

🎯
Focusing
View GitHub Profile
@Voltra
Voltra / Session.hpp
Created August 17, 2018 15:41
A session middleware for the C++ web framework Crow
#pragma once
#include <functional>
#include <unordered_map>
#include <string>
#include <mutex>
#include <sstream>
#include <locale>
#include <cstdlib>
#include <algorithm>
@Voltra
Voltra / isLinqCompatible.hpp
Last active July 24, 2018 05:43
Check if a container type can be used as the internals of Linqable
#ifndef LINQ_ISLINQCOMPATIBLE_H
#define LINQ_ISLINQCOMPATIBLE_H
#include <type_traits>
#include "../utils/sfinae/type_exists.h"
namespace linq{
namespace types{
using namespace linq::utils::sfinae;
using std::enable_if;
@Voltra
Voltra / lightquery_doc.md
Last active August 4, 2017 15:02
lightquery Documentation

Lightquery - Documentation

lightquery and aliases

You can use lightquery via its many aliases, such as :

  • µ
  • lq
  • lQuery
  • lightQuery
  • LightQuery

immutableLightQuery and why is it so important