From 29b1a0d6b9b19e4bb2305de4f8bf7758bbbf3bc7 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Mon, 18 Aug 2014 14:57:36 +0100 Subject: [PATCH 1/2] 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" + ] + } +] From 53ff21f0f8f99185f29291619171d4197e894f18 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Thu, 21 Aug 2014 20:34:34 +0100 Subject: [PATCH 2/2] Remove ref from metadata. It's now in core. --- meta/libraries.json | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/meta/libraries.json b/meta/libraries.json index 367a70f..ebf8f7b 100644 --- a/meta/libraries.json +++ b/meta/libraries.json @@ -30,23 +30,5 @@ "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" - ] } ]