// Derived from PDFium's cpvt_wordrange.h
// Original: Copyright 2014 The PDFium Authors
// Licensed under BSD-3-Clause / Apache-2.0
// See pdfium-upstream/LICENSE for the original license.
//! Word range — a span of characters in laid-out text (`CPVT_WordRange`).
//!
//! Represents a contiguous range of characters from a begin position
//! (inclusive) to an end position (exclusive).
use WordPlace;
/// A range of positions within the laid-out text.
///
/// Corresponds to upstream `CPVT_WordRange`.