MCPcopy Index your code
hub / github.com/askanium/rustplotlib / is_range_reversed

Method is_range_reversed

src/scales/mod.rs:29–31  ·  view source on GitHub ↗

Check whether the range is in reversed order, meaning the start is greater than the end.

(&self)

Source from the content-addressed store, hash-verified

27
28 /// Check whether the range is in reversed order, meaning the start is greater than the end.
29 fn is_range_reversed(&self) -> bool {
30 self.range_start() > self.range_end()
31 }
32
33 /// Get the list of ticks that represent the scale on a chart axis.
34 fn get_ticks(&self) -> Vec<T>;

Callers 3

load_dataMethod · 0.80
load_dataMethod · 0.80
load_dataMethod · 0.80

Implementers 2

linear.rssrc/scales/linear.rs
band.rssrc/scales/band.rs

Calls 2

range_startMethod · 0.45
range_endMethod · 0.45

Tested by

no test coverage detected