Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/MaterializeInc/materialize
/ is_sorted
Method
is_sorted
src/ore/src/vec.rs:123–125 ·
view source on GitHub ↗
(&self)
Source
from the content-addressed store, hash-verified
121
T: PartialOrd,
122
{
123
fn is_sorted(&self) -> bool {
124
self.is_sorted_by(|a, b| a <= b)
125
}
126
127
fn is_strictly_sorted(&self) -> bool {
128
self.is_sorted_by(|a, b| a < b)
Callers
2
parse_let_or_letrec_old
Function · 0.80
parse_let_or_letrec
Function · 0.80
Calls
1
is_sorted_by
Method · 0.80
Tested by
no test coverage detected