Skip to content

Commit

Permalink
improve module comments
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Feb 1, 2024
1 parent fa9bc83 commit 1edf4f0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
// specific language governing permissions and limitations
// under the License.

//! Specialized implementation of `COUNT DISTINCT` for "Native" arrays such as
//! [`Int64Array`] and [`Float64Array`]
//!
//! [`Int64Array`]: arrow::array::Int64Array
//! [`Float64Array`]: arrow::array::Float64Array
use std::cmp::Eq;
use std::collections::HashSet;
use std::fmt::Debug;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
// specific language governing permissions and limitations
// under the License.

//! Specialized implementation of `COUNT DISTINCT` for `StringArray` and `LargeStringArray`
//! Specialized implementation of `COUNT DISTINCT` for [`StringArray`]
//! and [`LargeStringArray`]
//!
//! [`StringArray`]: arrow::array::StringArray
//! [`LargeStringArray`]: arrow::array::LargeStringArray

use ahash::RandomState;
use arrow_array::cast::AsArray;
Expand Down

0 comments on commit 1edf4f0

Please sign in to comment.