Nuitka
The Python compiler
Loading...
Searching...
No Matches
richcomparisons.h
1// Copyright 2025, Kay Hayen, mailto:kay.hayen@gmail.com find license text at end of file
2
3#ifndef __NUITKA_HELPER_RICHCOMPARISONS_H__
4#define __NUITKA_HELPER_RICHCOMPARISONS_H__
5
6#include "nuitka/helper/comparisons_eq.h"
7#include "nuitka/helper/comparisons_ge.h"
8#include "nuitka/helper/comparisons_gt.h"
9#include "nuitka/helper/comparisons_le.h"
10#include "nuitka/helper/comparisons_lt.h"
11#include "nuitka/helper/comparisons_ne.h"
12
13#include "nuitka/helper/comparisons_dual_eq.h"
14#include "nuitka/helper/comparisons_dual_ge.h"
15#include "nuitka/helper/comparisons_dual_gt.h"
16#include "nuitka/helper/comparisons_dual_le.h"
17#include "nuitka/helper/comparisons_dual_lt.h"
18#include "nuitka/helper/comparisons_dual_ne.h"
19
20#endif
21
22// Part of "Nuitka", an optimizing Python compiler that is compatible and
23// integrates with CPython, but also works on its own.
24//
25// Licensed under the Apache License, Version 2.0 (the "License");
26// you may not use this file except in compliance with the License.
27// You may obtain a copy of the License at
28//
29// http://www.apache.org/licenses/LICENSE-2.0
30//
31// Unless required by applicable law or agreed to in writing, software
32// distributed under the License is distributed on an "AS IS" BASIS,
33// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
34// See the License for the specific language governing permissions and
35// limitations under the License.