Git Product home page Git Product logo

callables's Introduction

callables

A set of composable and partially-applicable function objects to simplify the use of algorithms and views

Example of usage:

namespace svw = std::views;
namespace srg = std::ranges;

struct box
{
    std::string label;
    float weight;
};

struct store
{
    store(auto) {}
};

auto boxes = std::vector<box>{...};
std::ranges::sort(boxes, brun::less_equal);

auto heavy = boxes | svw::filter(boxes, brun::greater_equal(10), &box::weight);
auto my_boxes = heavy | svw::filter(heavy, brun::equals("Joe"), &box::label);
auto take_stuff = my_boxes | svw::transform(brun::minus(10), &box::weight);
auto store_all = take_stuff | svw::transform(brun::construct<store>);

Function objects

Bit operators:

  • bit_and
  • bit_or
  • bit_xor
  • bit_not

Functional:

  • apply
  • compose
  • identity
  • construct<T>, construct<T>.from_tuple
  • get<N>
  • at(N), at[N]

Equality and ordering:

  • equal_to
  • not_equal_to
  • less
  • less_equal
  • greater
  • greater_equal

Arithmetic:

  • plus
  • minus
  • multiplies
  • divides
  • negate

All bit, arithmetic, equality and ordering operators have a member .tuple that accepts a tuple and computes the operation on its members. For example: static_assert(plus.tuple(std::pair{2, 3}) == 5)

callables's People

Contributors

rbrugo avatar

Stargazers

 avatar

Watchers

 avatar

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.