netflix-sel/src/main/java/com/netflix/sel/type/SelDouble.java [65:85]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    switch (op) {
      case ASSIGN:
        this.val = another;
        return this;
      case ADD_ASSIGN:
        this.val += another;
        return this;
      case SUB_ASSIGN:
        this.val -= another;
        return this;
      case MUL_ASSIGN:
        this.val *= another;
        return this;
      case DIV_ASSIGN:
        this.val /= another;
        return this;
      case MOD_ASSIGN:
        this.val %= another;
        return this;
      default:
        throw new UnsupportedOperationException(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



netflix-sel/src/main/java/com/netflix/sel/type/SelLong.java [75:95]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    switch (op) {
      case ASSIGN:
        this.val = another; // direct assignment
        return this;
      case ADD_ASSIGN:
        this.val += another;
        return this;
      case SUB_ASSIGN:
        this.val -= another;
        return this;
      case MUL_ASSIGN:
        this.val *= another;
        return this;
      case DIV_ASSIGN:
        this.val /= another;
        return this;
      case MOD_ASSIGN:
        this.val %= another;
        return this;
      default:
        throw new UnsupportedOperationException(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



