xtd 1.0.0
Loading...
Searching...
No Matches
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
32 template<typename type_t>
33 void operator()(type_t first, type_t last) {}
35 };
36 }
37 }
38}
Represents a sorter none of objects.
Definition sorter_none.hpp:23
void operator()(type_t first, type_t last)
The sorter operator with specified first and last items.
Definition sorter_none.hpp:33
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:25
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
auto first() const -> read_only_span< type_t, count >
Obtains a subspan consisting of the first count elements of the sequence.
Definition read_only_span.hpp:249
auto last() const -> read_only_span< type_t, count >
Obtains a subspan consisting of the last N elements of the sequence.
Definition read_only_span.hpp:274