mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-10-01 19:38:19 +00:00
8 lines
125 B
Rust
8 lines
125 B
Rust
![]() |
pub struct Position(pub Vec<usize>);
|
||
|
|
||
|
impl Position {
|
||
|
pub fn is_empty(&self) -> bool {
|
||
|
self.0.is_empty()
|
||
|
}
|
||
|
}
|