diff --git a/cpp/include/cudf/strings/strings_column_view.hpp b/cpp/include/cudf/strings/strings_column_view.hpp index 1156f0a5b73..1e9e73cef4c 100644 --- a/cpp/include/cudf/strings/strings_column_view.hpp +++ b/cpp/include/cudf/strings/strings_column_view.hpp @@ -85,28 +85,6 @@ class strings_column_view : private column_view { */ [[nodiscard]] column_view offsets() const; - /** - * @brief Return an iterator for the offsets child column. - * - * @deprecated Since 24.04 - * - * This automatically applies the offset of the parent. - * - * @return Iterator pointing to the first offset value. - */ - [[deprecated]] offset_iterator offsets_begin() const; - - /** - * @brief Return an end iterator for the offsets child column. - * - * @deprecated Since 24.04 - * - * This automatically applies the offset of the parent. - * - * @return Iterator pointing 1 past the last offset value. - */ - [[deprecated]] offset_iterator offsets_end() const; - /** * @brief Returns the number of bytes in the chars child column. * diff --git a/cpp/src/strings/strings_column_view.cpp b/cpp/src/strings/strings_column_view.cpp index 3ae97a00bbf..32671669093 100644 --- a/cpp/src/strings/strings_column_view.cpp +++ b/cpp/src/strings/strings_column_view.cpp @@ -35,16 +35,6 @@ column_view strings_column_view::offsets() const return child(offsets_column_index); } -strings_column_view::offset_iterator strings_column_view::offsets_begin() const -{ - return offsets().begin() + offset(); -} - -strings_column_view::offset_iterator strings_column_view::offsets_end() const -{ - return offsets().begin() + offset() + size() + 1; -} - int64_t strings_column_view::chars_size(rmm::cuda_stream_view stream) const noexcept { if (size() == 0) { return 0L; }