{
    "Function": "_addDeltaRange",
    "File": "src/Drips.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_addDelta",
        "_addDelta"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _addDeltaRange(DripsState storage state, uint32 start, uint32 end, int256 amtPerSec)\n        private\n    {\n        // slither-disable-next-line incorrect-equality,timestamp\n        if (start == end) {\n            return;\n        }\n        mapping(uint32 => AmtDelta) storage amtDeltas = state.amtDeltas;\n        _addDelta(amtDeltas, start, amtPerSec);\n        _addDelta(amtDeltas, end, -amtPerSec);\n    }"
}