---------------------------------------------------------------------- This is the API documentation for the gdtest_unicode_docs library. ---------------------------------------------------------------------- ## Functions Utility functions analyze_text(text: str) -> dict Analyze text with support for unicode characters. Handles various scripts: Latin (café), Greek (αβγ), Cyrillic (Привет), CJK (数据分析). Statistical symbols: μ (mean), σ (std dev), Σ (sum). Parameters ---------- text Input text (any unicode). Returns ------- dict Analysis with keys: length, unique_chars, scripts. compute_stats(values: list) -> dict Compute basic statistics. Returns μ (mean) and σ (standard deviation). Mathematical notation: μ = Σxᵢ/n Set operations: A ∪ B, A ∩ B, A ⊆ B Integral: ∫ f(x)dx, Product: ∏ xᵢ Parameters ---------- values Numeric values. Returns ------- dict Statistics dictionary with μ and σ. greet_international(name: str, language: str = 'en') -> str Greet someone in their language. Supported greetings include: - English: "Hello" - French: "Bonjour" (by René Descartes) - Japanese: "こんにちは" - Chinese: "你好" - Arabic: "مرحبا" - Emoji: "👋" Parameters ---------- name The person's name. language Language code (en, fr, ja, zh, ar). Returns ------- str Greeting string.