MCPcopy Create free account
hub / github.com/Achain-Dev/Achain / random_shuffle

Class random_shuffle

include/win/boost/lambda/algorithm.hpp:687–704  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

685// random_shuffle ---------------------------------
686
687struct random_shuffle {
688
689 template <class Args>
690 struct sig {
691 typedef void type;
692 };
693
694 template <class A>
695 void
696 operator()(A a, A b) const
697 { ::std::random_shuffle(a, b); }
698
699 template <class A, class C>
700 void
701 operator()(A a, A b, const C& c) const
702 { ::std::random_shuffle(a, b, c); }
703
704};
705
706
707// partition ---------------------------------

Callers 8

operator()Method · 0.70
Client.cppFile · 0.50
string_to_endpointMethod · 0.50
get_delegate_slateMethod · 0.50
test_random_accessFunction · 0.50
random_shuffle.hppFile · 0.50
twod_randomMethod · 0.50
random_distributionMethod · 0.50

Calls

no outgoing calls

Tested by 1

test_random_accessFunction · 0.40