1 /*
2  *  Copyright (c) 2016, Facebook, Inc.
3  *  All rights reserved.
4  *
5  *  This source code is licensed under the BSD-style license found in the
6  *  LICENSE file in the root directory of this source tree. An additional grant
7  *  of patent rights can be found in the PATENTS file in the same directory.
8  */
9 
10 #ifndef FATAL_INCLUDE_fatal_type_reverse_h
11 #define FATAL_INCLUDE_fatal_type_reverse_h
12 
13 #include <fatal/type/impl/reverse.h>
14 
15 namespace fatal {
16 
17 template <typename T>
18 using reverse = typename i_rev::r<T>::type;
19 
20 } // namespace fatal {
21 
22 #endif // FATAL_INCLUDE_fatal_type_reverse_h
23