FastLED 3.9.15
Loading...
Searching...
No Matches
algorithm.h File Reference
#include "fl/type_traits.h"
+ Include dependency graph for algorithm.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  fl
 Implements a simple red square effect for 2D LED grids.
 

Functions

template<typename Iterator1, typename Iterator2>
bool fl::equal (Iterator1 first1, Iterator1 last1, Iterator2 first2)
 
template<typename Iterator1, typename Iterator2, typename BinaryPredicate>
bool fl::equal (Iterator1 first1, Iterator1 last1, Iterator2 first2, BinaryPredicate pred)
 
template<typename Iterator1, typename Iterator2>
bool fl::equal (Iterator1 first1, Iterator1 last1, Iterator2 first2, Iterator2 last2)
 
template<typename Iterator1, typename Iterator2, typename BinaryPredicate>
bool fl::equal (Iterator1 first1, Iterator1 last1, Iterator2 first2, Iterator2 last2, BinaryPredicate pred)
 
template<typename Container1, typename Container2>
bool fl::equal_container (const Container1 &c1, const Container2 &c2)
 
template<typename Container1, typename Container2, typename BinaryPredicate>
bool fl::equal_container (const Container1 &c1, const Container2 &c2, BinaryPredicate pred)
 
template<typename Iterator, typename T>
void fl::fill (Iterator first, Iterator last, const T &value)
 
template<typename Iterator>
Iterator fl::max_element (Iterator first, Iterator last)
 
template<typename Iterator, typename Compare>
Iterator fl::max_element (Iterator first, Iterator last, Compare comp)
 
template<typename Iterator>
Iterator fl::min_element (Iterator first, Iterator last)
 
template<typename Iterator, typename Compare>
Iterator fl::min_element (Iterator first, Iterator last, Compare comp)
 
template<typename Iterator>
void fl::reverse (Iterator first, Iterator last)