[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-06 UTC."],[[["\u003cp\u003e\u003ccode\u003eArrayWithOffset\u003c/code\u003e is a C++ class within the OR-Tools constraint solver library that manages an array with a configurable offset for indexing.\u003c/p\u003e\n"],["\u003cp\u003eIt provides methods for construction, destruction, debugging, evaluating values at specific indices, and setting values at specific indices.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eEvaluate\u003c/code\u003e method allows retrieving the value at a given index, considering the offset, while \u003ccode\u003eSetValue\u003c/code\u003e updates the value at a specific index.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eDebugString\u003c/code\u003e returns a string representation of the \u003ccode\u003eArrayWithOffset\u003c/code\u003e object for debugging purposes.\u003c/p\u003e\n"]]],["The `ArrayWithOffset` class in C++ provides methods for managing an array with a defined index range. The constructor `ArrayWithOffset` takes `index_min` and `index_max` to set this range. `Evaluate` retrieves a value at a given `index`. `SetValue` allows setting a `value` at a specified `index`. The `DebugString` method returns a string representation. A destructor `~ArrayWithOffset` is also included. All the functions are part of the `ArrayWithOffset` class.\n"],null,["# ArrayWithOffset\n\nC++ Reference: class ArrayWithOffset\n====================================\n\n\nNote: This documentation is automatically generated.\n\n| Method ||\n|-------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|\n| [`ArrayWithOffset`](https://github.com/google/or-tools/blob/v9.4/ortools/constraint_solver/constraint_solveri.h#L2449) | \u003cbr /\u003e Arguments: `int64_t index_min, int64_t index_max` \u003cbr /\u003e |\n| [`~ArrayWithOffset`](https://github.com/google/or-tools/blob/v9.4/ortools/constraint_solver/constraint_solveri.h#L2456) | \u003cbr /\u003e |\n| [`DebugString`](https://github.com/google/or-tools/blob/v9.4/ortools/constraint_solver/constraint_solveri.h#L2470) | Return type: `std::string ` \u003cbr /\u003e |\n| [`Evaluate`](https://github.com/google/or-tools/blob/v9.4/ortools/constraint_solver/constraint_solveri.h#L2458) | Return type: `virtual T ` Arguments: `int64_t index` \u003cbr /\u003e |\n| [`SetValue`](https://github.com/google/or-tools/blob/v9.4/ortools/constraint_solver/constraint_solveri.h#L2464) | Return type: `void ` Arguments: `int64_t index, T value` \u003cbr /\u003e |"]]