reflex-search 1.6.1

A local-first, structure-aware code search engine for AI agents
Documentation
//! Test Corpus: Unicode Identifiers
//!
//! Expected symbols: 12 functions with unicode names
//!
//! Edge cases tested:
//! - Chinese characters
//! - Emoji in function names
//! - Accented characters
//! - Greek letters
//! - Various unicode scripts

pub fn café() {
    println!("Coffee shop");
}

fn naïve_algorithm() {
    println!("Simple approach");
}

pub fn 你好() {
    println!("Hello in Chinese");
}

fn こんにちは() {
    println!("Hello in Japanese");
}

pub fn Привет() {
    println!("Hello in Russian");
}

fn γνῶθι_σεαυτόν() {
    println!("Know thyself in Greek");
}

pub fn emoji_🚀_function() {
    println!("Rocket function");
}

fn test__sparkles() {
    println!("Sparkly test");
}

pub fn fire_🔥_handler() {
    println!("Hot stuff");
}

fn波浪号test() {
    println!("Wave test");
}

pub fn Übermensch() {
    println!("Superman");
}

fn naïve_café_München() {
    println!("Complex unicode mixing");
}