Function eql [src]

Prototype

pub fn eql(fc: FilesContext, a: File, b: File, b_index: usize) bool

Parameters

fc: FilesContexta: Fileb: Fileb_index: usize

Source

pub fn eql(fc: FilesContext, a: File, b: File, b_index: usize) bool { _ = fc; _ = b_index; return a.prefixed_path.eql(b.prefixed_path); }