📄 tuple.h
字号:
#ifndef TUPLE_H#define TUPLE_H#include "poly.h"#include "str.h"#include "plist.h"#include "commonInter.h"typedef struct tuple *tuple;tuple newTuple (poly x, poly y);poly tupleFirst (tuple t);poly tupleSecond (tuple t);int tupleEquals (poly t1, poly t2);int tupleEquals2 (tuple t1, tuple t2, tyEquals eqx, tyEquals eqy);str tupleToString (poly t);int tupleHashCode (poly t);plist tupleGetPlist (poly t);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -