Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions vortex-array/src/scalar_fn/vtable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,13 +229,10 @@ pub trait ScalarFnVTable: 'static + Sized + Clone + Send + Sync {
///
/// Nullary functions are vacuously strict because they have no input values.
///
/// Conservatively defaults to `false` (non-strict).
/// Every implementation must declare its strictness explicitly.
///
/// This method only checks the expression itself, not its children.
fn is_strict(&self, options: &Self::Options) -> bool {
_ = options;
false
}
fn is_strict(&self, options: &Self::Options) -> bool;

/// Returns whether this expression is semantically fallible. Conservatively defaults to
/// `true`.
Expand Down
Loading