nitdoc: remove unused plugin "Copy to Clipboard"
[nit.git] / tests / test_ni_operators.nit.h
1 /* This file is part of NIT ( http://www.nitlanguage.org ).
2 *
3 * Copyright 2011 Alexis Laferrière <alexis.laf@xymus.net>
4 *
5 * This file is free software, which comes along with NIT. This software is
6 * distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
7 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
8 * PARTICULAR PURPOSE. You can modify it is you want, provided this header
9 * is kept unaltered, and a notification of the changes is added.
10 * You are allowed to redistribute it and sell it, alone or is a part of
11 * another product.
12 */
13
14 #ifndef test_ni_operators_IMPL_NIT_H
15 #define test_ni_operators_IMPL_NIT_H
16
17 #include <test_ni_operators._nitni.h>
18
19 A A__plus___impl( A recv, A other );
20 A A__minus___impl( A recv, A other );
21 A A__star___impl( A recv, bigint by );
22 A A__slash___impl( A recv, bigint by );
23 int A__equal___impl( A recv, nullable_Object other );
24 A A__percent___impl( A recv, A other );
25 A A__starship___impl( A recv, A other );
26 int A__greater___impl( A recv, A other );
27 int A__less___impl( A recv, A other );
28 int A__ge___impl( A recv, A other );
29 int A__less_or_equal___impl( A recv, A other );
30 void A__right___impl( A recv, A other );
31 void A__left___impl( A recv, A other );
32 A A__index___impl( A recv, bigint index );
33 A A__index_assign___impl( A recv, bigint index, A value );
34
35 #endif