diff options
| author | Adrian Kummerlaender | 2015-02-09 15:46:26 +0100 | 
|---|---|---|
| committer | Adrian Kummerlaender | 2015-02-09 15:46:26 +0100 | 
| commit | 709274402ff0a83dfaacae880dfa6db478d29ab1 (patch) | |
| tree | 9a7c791f7142663f2966f900ac7d1563ce2f1ac6 | |
| parent | 262806540c6eaf0dc45794cdf8f5f0404df10c79 (diff) | |
| download | TypeAsValue-709274402ff0a83dfaacae880dfa6db478d29ab1.tar TypeAsValue-709274402ff0a83dfaacae880dfa6db478d29ab1.tar.gz TypeAsValue-709274402ff0a83dfaacae880dfa6db478d29ab1.tar.bz2 TypeAsValue-709274402ff0a83dfaacae880dfa6db478d29ab1.tar.lz TypeAsValue-709274402ff0a83dfaacae880dfa6db478d29ab1.tar.xz TypeAsValue-709274402ff0a83dfaacae880dfa6db478d29ab1.tar.zst TypeAsValue-709274402ff0a83dfaacae880dfa6db478d29ab1.zip | |
Updated `Sort` to make use of `Partition` for splitting at pivot
* added further test cases for `Sort` as well as `Nth` aliae
| -rw-r--r-- | src/list/operation/higher/sort.h | 13 | ||||
| -rw-r--r-- | test.cc | 57 | 
2 files changed, 64 insertions, 6 deletions
| diff --git a/src/list/operation/higher/sort.h b/src/list/operation/higher/sort.h index 0ff5c40..a707a15 100644 --- a/src/list/operation/higher/sort.h +++ b/src/list/operation/higher/sort.h @@ -1,8 +1,9 @@  #ifndef TYPEASVALUE_SRC_LIST_OPERATION_HIGHER_SORT_H_  #define TYPEASVALUE_SRC_LIST_OPERATION_HIGHER_SORT_H_ -#include "filter.h"  #include "list/operation/concatenate.h" +#include "list/operation/higher/partition.h" +#include "function/apply.h"  namespace tav { @@ -20,11 +21,13 @@ class Sort {  			typename Drop<Add<index, Size<1>>, Sequence>::type  		>::type; -		template <typename X> -		using comparator_wrapper = Comparator<pivot, X>; +		using partitions = typename Partition< +			Apply<Comparator, pivot, tav::_0>::template single_type, +			sequence_sans_pivot +		>::type; -		using lhs = typename Filter<comparator_wrapper, sequence_sans_pivot>::type; -		using rhs = typename Remove<comparator_wrapper, sequence_sans_pivot>::type; +		using lhs = typename Car<partitions>::type; +		using rhs = typename Cdr<partitions>::type;  	public:  		typedef typename Concatenate< @@ -302,6 +302,26 @@ static_assert(  	"(list void 1 void 2 void) != '(1 . 2)"  ); +static_assert( +	std::is_same< +		tav::Int<1>, +		tav::Head< +			tav::List<tav::Int<1>, tav::Int<2>, tav::Int<3>>::type +		> +	>::value, +	"(head (list 1 2 3) != 1" +); + +static_assert( +	std::is_same< +		tav::Pair<tav::Int<2>, tav::Pair<tav::Int<3>, void>>, +		tav::Tail< +			tav::List<tav::Int<1>, tav::Int<2>, tav::Int<3>>::type +		> +	>::value, +	"(tail (list 1 2 3) != '(2 . 3)" +); +  // list of type  static_assert( @@ -377,6 +397,30 @@ static_assert(  	"(nth 1 (list 1 2)) != 2"  ); +static_assert( +	std::is_same< +		tav::Int<1>, +		tav::First<tav::List<tav::Int<1>, tav::Int<2>, tav::Int<3>>::type> +	>::value, +	"(first (list 1 2 3)) != 1" +); + +static_assert( +	std::is_same< +		tav::Int<2>, +		tav::Second<tav::List<tav::Int<1>, tav::Int<2>, tav::Int<3>>::type> +	>::value, +	"(second (list 1 2 3)) != 2" +); + +static_assert( +	std::is_same< +		tav::Int<3>, +		tav::Third<tav::List<tav::Int<1>, tav::Int<2>, tav::Int<3>>::type> +	>::value, +	"(third (list 1 2 3)) != 3" +); +  // list take  static_assert( @@ -558,7 +602,7 @@ static_assert(  		tav::Pair<  			tav::List<tav::Int<1>, tav::Int<3>>::type,  			tav::List<tav::Int<2>>::type -		>, +		>::type,  		tav::Partition<  			tav::Odd,  			tav::List<tav::Int<1>, tav::Int<2>, tav::Int<3>>::type @@ -921,6 +965,17 @@ static_assert(  	"(sort < (list 1 3 2)) != (list 3 2 1)"  ); +static_assert( +	std::is_same< +		tav::Iota<tav::Size<42>, tav::Int<1>, tav::Int<1>>::type, +		tav::Sort< +			tav::GreaterThan, +			tav::Iota<tav::Size<42>, tav::Int<42>, tav::Int<-1>>::type +		>::type +	>::value, +	"(sort > (iota 42 42 -1)) != (iota 42 1 1)" +); +  // function apply  static_assert( | 
