示例#1
0
bool cellLess(const Cell* cell, int64_t val) {
  return cellRelOp(Lt(), cell, val);
}
示例#2
0
bool cellGreater(Cell cell, const ArrayData* val) {
    return cellRelOp(Gt(), cell, val);
}
示例#3
0
bool cellGreater(Cell cell, const ResourceData* val) {
    return cellRelOp(Gt(), cell, val);
}
示例#4
0
bool cellGreater(Cell cell, bool val) {
    return cellRelOp(Gt(), cell, val);
}
示例#5
0
bool cellGreater(Cell cell, double val) {
    return cellRelOp(Gt(), cell, val);
}
示例#6
0
bool cellLess(Cell cell, const ArrayData* val) {
    return cellRelOp(Lt(), cell, val);
}
示例#7
0
bool cellLess(Cell cell, const ResourceData* val) {
    return cellRelOp(Lt(), cell, val);
}
示例#8
0
bool cellEqual(Cell cell, int64_t val) {
    return cellRelOp(Eq(), cell, val);
}
示例#9
0
bool cellEqual(Cell cell, double val) {
    return cellRelOp(Eq(), cell, val);
}
示例#10
0
bool cellGreater(const Cell* c1, const Cell* c2) {
  return cellRelOp(Gt(), c1, c2);
}
示例#11
0
bool cellEqual(Cell cell, bool val) {
    return cellRelOp(Eq(), cell, val);
}
示例#12
0
bool cellGreater(const Cell* cell, bool val) {
  return cellRelOp(Gt(), cell, val);
}
示例#13
0
bool cellLess(const Cell* c1, const Cell* c2) {
  return cellRelOp(Lt(), c1, c2);
}
示例#14
0
bool cellLess(const Cell* cell, double val) {
  return cellRelOp(Lt(), cell, val);
}
示例#15
0
bool cellLess(Cell cell, double val) {
    return cellRelOp(Lt(), cell, val);
}
示例#16
0
bool cellEqual(Cell cell, const StringData* val) {
    return cellRelOp(Eq(), cell, val);
}
示例#17
0
bool cellLess(Cell cell, const StringData* val) {
    return cellRelOp(Lt(), cell, val);
}
示例#18
0
bool cellEqual(Cell cell, const ArrayData* val) {
    return cellRelOp(Eq(), cell, val);
}
示例#19
0
bool cellLess(Cell cell, const ObjectData* val) {
    return cellRelOp(Lt(), cell, val);
}
示例#20
0
bool cellEqual(Cell cell, const ObjectData* val) {
    return cellRelOp(Eq(), cell, val);
}
示例#21
0
bool cellLess(Cell c1, Cell c2) {
    return cellRelOp(Lt(), c1, c2);
}
示例#22
0
bool cellEqual(Cell cell, const ResourceData* val) {
    return cellRelOp(Eq(), cell, val);
}
示例#23
0
bool cellGreater(Cell cell, int64_t val) {
    return cellRelOp(Gt(), cell, val);
}
示例#24
0
bool cellEqual(Cell c1, Cell c2) {
    return cellRelOp(Eq(), c1, c2);
}
示例#25
0
bool cellGreater(Cell cell, const StringData* val) {
    return cellRelOp(Gt(), cell, val);
}
示例#26
0
bool cellLess(Cell cell, bool val) {
    return cellRelOp(Lt(), cell, val);
}
示例#27
0
bool cellGreater(Cell cell, const ObjectData* val) {
    return cellRelOp(Gt(), cell, val);
}
示例#28
0
bool cellLess(Cell cell, int64_t val) {
    return cellRelOp(Lt(), cell, val);
}
示例#29
0
bool cellGreater(Cell c1, Cell c2) {
    return cellRelOp(Gt(), c1, c2);
}
示例#30
0
bool cellEqual(const Cell* c1, const Cell* c2) {
  return cellRelOp(Eq(), c1, c2);
}