From 475cb92969689f4861943d792263b1a1679a12a0 Mon Sep 17 00:00:00 2001 From: Evgeniy Alekseev Date: Sun, 22 Oct 2017 04:46:26 +0300 Subject: [PATCH] update readme --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c571a77..9b89310 100644 --- a/README.md +++ b/README.md @@ -6,13 +6,21 @@ Simple header-only variant-driven C++17 `Result` implementation. * c++17 or c++1z with support of variant +## Features + +* Small, header-only. +* Pure C++. +* Human and machine readable (with custom return errors support) error + representation. +* Compile-time check of dereference. + ## Usage example ```cpp #include #include -#include "result.h" +#include "result.hpp" using namespace std::string_literals;