Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hist/histv7/doc/CodeArchitecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Objects of this type are passed by value.

A single bin index, which is just an integer for normal bins.
`Underflow()` and `Overflow()` are special values and not ordered with respect to others.
Objects of this type are passed by value; most notably to `GetBinContent` and `SetBinContent`.
Objects of this type are passed by value; most notably to `GetBinContent`.

### `RBinIndexRange`

Expand Down
3 changes: 1 addition & 2 deletions hist/histv7/doc/DesignImplementation.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,9 @@ This will copy the arguments, which is fine in this case because `RBinIndex` is
### Special Arguments

Special arguments are passed last.
Examples include
For example
```cpp
template <typename... A> void Fill(const std::tuple<A...> &args, RWeight w);
template <std::size_t N> void SetBinContent(const std::array<RBinIndex, N> &indices, const BinContentType &content);
```
The same works for the variadic function templates that will check the type of the last argument.

Expand Down