Skip to content

Commit

Permalink
Remove docs mentioning scalar_view since no such class exists. (#11132)
Browse files Browse the repository at this point in the history
The developer guide references a `scalar_view` class that does not exist. This PR removes that reference.

See #6558 for the rationale of why no such class exists.

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - Nghia Truong (https://github.com/ttnghia)
  - https://github.com/nvdbaranec

URL: #11132
  • Loading branch information
bdice committed Jun 22, 2022
1 parent f4f3428 commit eeac9c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/docs/DEVELOPER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ resource in destruction ([RAII](https://en.cppreference.com/w/cpp/language/raii)
object does not own resources. Any class in libcudf with the `*_view` suffix is non-owning. For more
detail see the [`libcudf++` presentation.](https://docs.google.com/presentation/d/1zKzAtc1AWFKfMhiUlV5yRZxSiPLwsObxMlWRWz_f5hA/edit?usp=sharing)
libcudf functions typically take views as input (`column_view`, `table_view`, or `scalar_view`)
libcudf functions typically take views as input (`column_view` or `table_view`)
and produce `unique_ptr`s to owning objects as output. For example,
```c++
Expand Down

0 comments on commit eeac9c2

Please sign in to comment.