1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
//! Function Category Implementation
//!
//! This module provides a concrete implementation of the Category and Arrow traits for functions.
//! It represents the category of functions where objects are types and morphisms are functions between those types.
//!
//! **Note**: This module replaces the deprecated `Composable` trait with category-theoretically sound
//! function composition operations.
//!
//! # Mathematical Foundation
//!
//! The function category is one of the most fundamental categories in mathematics and computer science.
//! It satisfies all category laws and provides a natural implementation of arrow operations.
//!
//! ## Category Structure
//!
//! - **Objects**: Rust types (`A`, `B`, `C`, etc.)
//! - **Morphisms**: Functions `A → B` represented as `Arc<dyn Fn(A) -> B + 'static>`
//! - **Identity**: Identity function `id_A(x) = x`
//! - **Composition**: Function composition `(g ∘ f)(x) = g(f(x))`
//!
//! ## Laws Satisfied
//!
//! ### Category Laws
//! 1. **Identity**: `f ∘ id = f = id ∘ f`
//! 2. **Associativity**: `(h ∘ g) ∘ f = h ∘ (g ∘ f)`
//!
//! ### Arrow Laws
//! 1. **Arrow Identity**: `arrow(id) = identity_morphism`
//! 2. **Arrow Composition**: `arrow(g ∘ f) = compose_morphisms(arrow(f), arrow(g))`
//! 3. **First Laws**: Various laws governing the `first` operation
//!
//! # Usage Examples
//!
//! ## Basic Operations
//!
//! ```rust
//! use rustica::category::function_category::FunctionCategory;
//! use rustica::traits::category::Category;
//! use rustica::traits::arrow::Arrow;
//!
//! // Identity morphism
//! let id = FunctionCategory::identity_morphism::<i32>();
//! assert_eq!(id(42), 42);
//!
//! // Function lifting
//! let double = FunctionCategory::arrow(|x: i32| x * 2);
//! assert_eq!(double(21), 42);
//!
//! // Composition (category-theoretic)
//! let add_one = FunctionCategory::arrow(|x: i32| x + 1);
//! let composed = FunctionCategory::compose_morphisms(&double, &add_one);
//! assert_eq!(composed(5), 12); // double(add_one(5)) = double(6) = 12
//! ```
//!
//! ## Arrow Operations
//!
//! ```rust
//! use rustica::category::function_category::FunctionCategory;
//! use rustica::traits::arrow::Arrow;
//!
//! let double = FunctionCategory::arrow(|x: i32| x * 2);
//! let square = FunctionCategory::arrow(|x: i32| x * x);
//!
//! // Process first component of pair
//! let first_double = FunctionCategory::first(&double);
//! assert_eq!(first_double((5, "hello")), (10, "hello"));
//!
//! // Split input to multiple processors
//! let split_both = FunctionCategory::split(&double, &square);
//! assert_eq!(split_both(5), (10, 25));
//!
//!
//! // Split with different types
//! let to_string = FunctionCategory::arrow(|x: i32| x.to_string());
//! let is_even = FunctionCategory::arrow(|x: i32| x % 2 == 0);
//! let mixed_split = FunctionCategory::split(&to_string, &is_even);
//! assert_eq!(mixed_split(6), ("6".to_string(), true));
//! ```
//!
//! ## Complex Pipelines (Replacing Deprecated Composable)
//!
//! ```rust
//! use rustica::category::function_category::{FunctionCategory, function, compose};
//! use rustica::traits::category::Category;
//! use rustica::traits::arrow::Arrow;
//!
//! // Using the function! macro for named morphisms
//! function!(double: i32 => i32 = |x: i32| x * 2);
//! function!(add_one: i32 => i32 = |x: i32| x + 1);
//! function!(to_string: i32 => String = |x: i32| x.to_string());
//!
//! // Category-theoretic composition
//! let step1 = FunctionCategory::compose_morphisms(&add_one, &double);
//! let pipeline = FunctionCategory::compose_morphisms(&to_string, &step1);
//! assert_eq!(pipeline(5), "11");
//!
//! // Or using the compose! macro
//! let macro_pipeline = compose!(
//! |x: i32| x.to_string(),
//! |x: i32| x + 1,
//! |x: i32| x * 2,
//! );
//! assert_eq!(macro_pipeline(5), "11");
//!
//! // Conditional composition
//! let conditional = FunctionCategory::then_if(
//! &add_one,
//! &double,
//! |x: &i32| x % 2 == 0
//! );
//! assert_eq!(conditional(1), 4); // (1 + 1) * 2 = 4 (2 is even)
//! assert_eq!(conditional(2), 3); // (2 + 1) = 3 (3 is odd)
//! ```
//!
//! # Memory Management
//!
//! All morphisms are wrapped in `Arc` for cheap cloning via shared ownership.
//! Note that `Arc`'s reference counting is thread-safe, but the morphism type itself does not
//! require `Send`/`Sync` bounds.
pub use crateArrow;
pub use crateCategory;
use Arc;
/// A concrete implementation of the Category and Arrow traits for functions.
///
/// This zero-sized type serves as a namespace for function category operations.
/// All methods are implemented as associated functions on the traits.
;
/// Type alias for function morphisms with static lifetime bounds.
///
/// This alias encapsulates the common pattern of `Arc<dyn Fn(A) -> B + 'static>`
/// used throughout the function category implementation, making the code more
/// readable and maintainable.
pub type FunctionMorphism<A, B> = ;
/// Type alias for morphisms that operate on pairs, commonly used in arrow operations
/// like `both` where the same transformation is applied to both elements of a tuple.
pub type PairMorphism<A, B> = ;
/// Convenience implementations for FunctionCategory
///
/// These methods provide additional functionality beyond the basic Category and Arrow traits,
/// following category theory principles while offering practical composition utilities.
/// Macro for creating named function morphisms with type annotations.
///
/// This macro provides a convenient syntax for creating function morphisms
/// with explicit type annotations, making the code more readable and self-documenting.
/// This replaces the deprecated Composable trait functionality.
///
/// # Examples
///
/// ```rust
/// use rustica::category::function_category::{function, FunctionCategory};
/// use rustica::traits::category::Category;
///
/// function!(double: i32 => i32 = |x: i32| x * 2);
/// function!(to_string: i32 => String = |x: i32| x.to_string());
///
/// assert_eq!(double(21), 42);
/// assert_eq!(to_string(42), "42");
///
/// // Example of composing the created morphisms
/// let pipeline = FunctionCategory::compose_morphisms(&to_string, &double);
/// assert_eq!(pipeline(5), "10");
/// ```
/// Macro for composing multiple functions with type annotations.
///
/// This macro provides a convenient way to compose multiple functions,
/// replacing the deprecated Composable::compose functionality.
///
/// # Examples
///
/// ```rust
/// use rustica::category::function_category::compose;
///
/// let pipeline = compose!(
/// |x: i32| x.to_string(),
/// |x: i32| x * 2,
/// |x: i32| x + 1
/// );
/// assert_eq!(pipeline(5), "12");
/// ```
/// Macro for creating function pipelines using comma-separated syntax.
///
/// This macro provides a left-to-right composition syntax where functions
/// are applied in the order they appear, separated by commas.
/// Returns a composed function rather than executing immediately.
///
/// # Examples
///
/// ```rust
/// use rustica::category::function_category::pipe;
///
/// let pipeline = pipe!(|x: i32| x + 1, |x: i32| x * 2, |x: i32| x.to_string());
/// assert_eq!(pipeline(5), "12");
/// ```
pub use ;