From 29b1a0d6b9b19e4bb2305de4f8bf7758bbbf3bc7 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Mon, 18 Aug 2014 14:57:36 +0100 Subject: [PATCH] Add metadata file. --- meta/libraries.json | 52 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 meta/libraries.json diff --git a/meta/libraries.json b/meta/libraries.json new file mode 100644 index 0000000..367a70f --- /dev/null +++ b/meta/libraries.json @@ -0,0 +1,52 @@ +[ + { + "key": "bind", + "name": "Bind", + "authors": [ + "Peter Dimov" + ], + "description": "boost::bind is a generalization of the standard functions std::bind1st and std::bind2nd. It supports arbitrary function objects, functions, function pointers, and member function pointers, and is able to bind any argument to a specific value or route input arguments into arbitrary positions.", + "std": [ + "tr1" + ], + "category": [ + "Function-objects" + ], + "maintainers": [ + "Peter Dimov " + ] + }, + { + "key": "bind/mem_fn", + "name": "Member Function", + "authors": [ + "Peter Dimov" + ], + "description": "Generalized binders for function/object/pointers and member functions.", + "documentation": "mem_fn.html", + "std": [ + "tr1" + ], + "category": [ + "Function-objects" + ] + }, + { + "key": "bind/ref", + "name": "Ref", + "authors": [ + "Jaako Järvi", + "Peter Dimov", + "Doug Gregor", + "Dave Abrahams" + ], + "description": "A utility library for passing references to generic functions.", + "documentation": "ref.html", + "std": [ + "tr1" + ], + "category": [ + "Function-objects" + ] + } +]