xtd 0.2.0
sorter_none.hpp
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/object>
6
8namespace xtd {
10 namespace forms {
12 namespace layout {
23 class sorter_none : public object {
24 public:
26
28 template<class type_t>
29 void operator()(type_t first, type_t last) {}
31 };
32 }
33 }
34}
Represents a sorter none of objects.
Definition sorter_none.hpp:23
object()=default
Create a new instance of the ultimate base class object.
The xtd::forms::layout namespace contains classes for implementing layout behaviors in your form or c...
Definition arranged_element_collection.hpp:22
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition texts.hpp:219
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
read_only_span< type_t, count > first() const
Obtains a subspan consisting of the first count elements of the sequence.
Definition read_only_span.hpp:282
read_only_span< type_t, count > last() const
Obtains a subspan consisting of the last N elements of the sequence.
Definition read_only_span.hpp:307