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
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
//! Core Effect Types
//!
//! This module defines the central `Eff` type and the `EffectMarker` trait
//! that effects must implement to participate in the type-level effect system.
//!
//! # Performance Notes
//!
//! - `Eff<Pure, A>` is optimized to store just `A`
//! - Single-effect rows use specialized representations
//! - Complex effect combinations may use boxed continuations
use Box;
use PhantomData;
use ;
// =============================================================================
// Effect Marker Trait
// =============================================================================
/// Marker trait for effect types.
///
/// Each effect type must implement this trait to specify its bit position
/// in the effect row bitmask. This enables O(1) effect membership checking.
///
/// # Implementing Custom Effects
///
/// ```rust
/// use ordofp_core::nexus::prelude::*;
///
/// // Define a custom logging effect
/// struct LogEffect;
///
/// impl EffectMarker for LogEffect {
/// const BIT: u128 = USER_EFFECT_START << 0; // First user effect
/// }
/// ```
// =============================================================================
// Core Eff Type
// =============================================================================
/// The central effectful computation type.
///
/// `Eff<R, A>` represents a computation that:
/// - May perform effects in the effect row `R`
/// - Produces a value of type `A`
///
/// # Performance Characteristics
///
/// | Effect Row | Representation | Notes |
/// |------------|----------------|-------|
/// | `Pure` | Direct value | No overhead |
/// | `Row<STATE_BIT>` | Lazy thunk | Use `StatefulComputation` for efficiency |
/// | `Row<READER_BIT>` | Lazy thunk | Use `ReaderComputation` for efficiency |
/// | `Row<ERROR_BIT>` | Lazy thunk | Use `ErrorComputation` for efficiency |
/// | Combined | Boxed thunk | Some allocation overhead |
///
/// For maximum efficiency with single effects, use the specialized
/// computation types in the `effects` module directly.
///
/// # Example
///
/// ```rust
/// use ordofp_core::nexus::prelude::*;
///
/// // Pure computation - no overhead
/// let pure_comp: Eff<Pure, i32> = pure(42);
/// assert_eq!(pure_comp.run_pure(), 42);
/// ```
/// Internal representation of Eff, specialized per effect row pattern.
pub
/// A lazily evaluated computation.
pub
// =============================================================================
// Eff Constructors
// =============================================================================
// =============================================================================
// Eff Functor
// =============================================================================
// =============================================================================
// Eff Applicative
// =============================================================================
// =============================================================================
// Eff Monad
// =============================================================================
// =============================================================================
// State Effect Operations
// =============================================================================
/// Marker type for the State effect.
;
/// Type alias for state effect row.
pub type StateEff = STATE_BIT }>;
/// Read the current state without modifying it.
///
/// This is the State effect's read primitive. The computation produces a
/// clone of the current state value. Must be run inside a [`StateHandler`]
/// (e.g. via [`run_state`]).
///
/// [`StateHandler`]: crate::nexus::handler::StateHandler
/// [`run_state`]: crate::nexus::handler::run_state
///
/// # Type Parameters
///
/// * `S` – The state type managed by the handler. Must implement [`Clone`]
/// so the value can be returned while leaving the state intact.
///
/// # Example
///
/// ```rust,no_run
/// use ordofp_core::nexus::prelude::*;
/// use ordofp_core::nexus::get;
///
/// // no_run: `get` is an unimplemented stub (see "Panics" below) — forcing
/// // it via `run_state` always panics.
/// let comp = get::<i32>();
/// let (value, state) = run_state(comp, 42);
/// assert_eq!(value, 42);
/// assert_eq!(state, 42); // state is unchanged
/// ```
///
/// # Panics
///
/// **Stub:** the returned computation always panics when forced — the handler
/// infrastructure that would interpret `get` does not exist yet. Use
/// `effects::state::StatefulComputation` for working state effects.
/// Replace the current state with a new value.
///
/// This is the State effect's write primitive. The new state `value` takes
/// effect immediately when the computation is run by a [`StateHandler`].
/// The computation itself produces `()` — use [`get`] afterwards if you need
/// to observe the updated state.
///
/// [`StateHandler`]: crate::nexus::handler::StateHandler
///
/// # Type Parameters
///
/// * `S` – The state type managed by the handler.
///
/// # Example
///
/// ```rust,no_run
/// use ordofp_core::nexus::prelude::*;
/// use ordofp_core::nexus::put;
///
/// // no_run: `put` is an unimplemented stub (see "Panics" below) — forcing
/// // it via `run_state` always panics.
/// let comp = put(42_i32);
/// let ((), final_state) = run_state(comp, 0);
/// assert_eq!(final_state, 42);
/// ```
///
/// # Panics
///
/// **Stub:** the returned computation always panics when forced — the handler
/// infrastructure that would interpret `put` does not exist yet. Use
/// `effects::state::StatefulComputation` for working state effects.
/// Apply a function to transform the current state in place.
///
/// This is the State effect's read-modify-write primitive. The function `f`
/// receives the current state and returns the new state. The computation
/// produces `()`. Must be run inside a [`StateHandler`] (e.g. via
/// [`run_state`]).
///
/// This is equivalent to `get().and_then(|s| put(f(s)))` but expressed as a
/// single primitive.
///
/// [`StateHandler`]: crate::nexus::handler::StateHandler
/// [`run_state`]: crate::nexus::handler::run_state
///
/// # Type Parameters
///
/// * `S` – The state type managed by the handler.
/// * `F` – A one-shot closure that maps the old state to the new state.
///
/// # Example
///
/// ```rust,no_run
/// use ordofp_core::nexus::prelude::*;
/// use ordofp_core::nexus::modify;
///
/// // no_run: `modify` is an unimplemented stub (see "Panics" below) —
/// // forcing it via `run_state` always panics.
/// let comp = modify(|n: i32| n + 1);
/// let ((), new_state) = run_state(comp, 41);
/// assert_eq!(new_state, 42);
/// ```
///
/// # Panics
///
/// **Stub:** the returned computation always panics when forced — the handler
/// infrastructure that would interpret `modify` does not exist yet. Use
/// `effects::state::StatefulComputation` for working state effects.
// =============================================================================
// Reader Effect Operations
// =============================================================================
/// Marker type for the Reader effect.
;
/// Type alias for reader effect row.
pub type ReaderEff = READER_BIT }>;
/// Read the entire environment value.
///
/// This is the Reader effect's primary primitive. The computation produces a
/// clone of the environment supplied to the handler. Must be run inside a
/// [`ReaderHandler`] (e.g. via [`run_reader`]).
///
/// [`ReaderHandler`]: crate::nexus::handler::ReaderHandler
/// [`run_reader`]: crate::nexus::handler::run_reader
///
/// # Type Parameters
///
/// * `E` – The environment type threaded through by the Reader effect. Must
/// implement [`Clone`] so the value can be returned while leaving the
/// environment available for subsequent `ask` calls.
///
/// # Example
///
/// ```rust,no_run
/// use ordofp_core::nexus::prelude::*;
/// use ordofp_core::nexus::ask;
///
/// // no_run: `ask` is an unimplemented stub (see "Panics" below) — forcing
/// // it via `run_reader` always panics.
/// let comp = ask::<u16>();
/// assert_eq!(run_reader(comp, &8080_u16), 8080);
/// ```
///
/// # Panics
///
/// **Stub:** the returned computation always panics when forced — the handler
/// infrastructure that would interpret `ask` does not exist yet. Use
/// `effects::reader::ReaderComputation` for working reader effects.
/// Extract a value from the environment by applying a projection function.
///
/// This is a convenience combinator over [`ask`]: instead of reading the whole
/// environment and mapping afterwards, `asks` lets you project directly in one
/// step. It is sometimes called `asks` or `reader` in Haskell literature.
///
/// # Type Parameters
///
/// * `E` – The environment type threaded through by the Reader effect.
/// * `A` – The projected value type returned by the computation.
/// * `F` – A one-shot closure that receives a shared reference to `E` and
/// produces a value of type `A`.
///
/// # Example
///
/// ```rust
/// use ordofp_core::nexus::prelude::*;
/// use ordofp_core::nexus::asks;
///
/// #[derive(Clone)]
/// struct Config { port: u16 }
///
/// fn get_port() -> Eff<ReaderEff, u16> {
/// asks(|cfg: &Config| cfg.port)
/// }
/// ```
///
/// # Panics
///
/// **Stub:** the returned computation always panics when forced — the handler
/// infrastructure that would interpret `asks` does not exist yet. Use
/// `effects::reader::ReaderComputation` for working reader effects.
// =============================================================================
// Error Effect Operations
// =============================================================================
/// Marker type for the Error effect.
;
/// Type alias for error effect row.
pub type ErrorEff = ERROR_BIT }>;
/// Lift a successful value into an Error-effect computation.
///
/// This is the success constructor for the Error effect, equivalent to
/// `pure` / `Ok` in the error-handling context. The error type `E` is a
/// phantom parameter: it appears only in the effect row so that the
/// computation can be sequenced with [`err`] calls that produce the same
/// error type without requiring an actual error value here.
///
/// # Type Parameters
///
/// * `E` – The error type that *could* be raised; constrains which [`err`]
/// values can be sequenced with this computation.
/// * `A` – The value type of the successful result.
///
/// # Example
///
/// ```rust
/// use ordofp_core::nexus::prelude::*;
/// use ordofp_core::nexus::ok;
///
/// let comp: Eff<ErrorEff, i32> = ok::<String, i32>(42);
/// assert_eq!(run_error::<String, i32>(comp), Ok(42));
/// ```
/// Raise an error inside an Error-effect computation.
///
/// This is the failure constructor for the Error effect — the effectful
/// equivalent of `Err(e)` / `throw`. When run by an [`ErrorHandler`]
/// (e.g. via [`run_error`]), the computation short-circuits immediately and
/// returns `Err(error)` without evaluating any subsequent `and_then` steps.
///
/// [`ErrorHandler`]: crate::nexus::handler::ErrorHandler
/// [`run_error`]: crate::nexus::handler::run_error
///
/// # Type Parameters
///
/// * `E` – The error type to raise. Must match the error type expected by the
/// surrounding [`ErrorHandler`].
/// * `A` – The (phantom) value type the computation would have produced on
/// success. This allows `err` to be sequenced with any `Eff<ErrorEff, A>`
/// regardless of what `A` is.
///
/// # Example
///
/// ```rust,no_run
/// use ordofp_core::nexus::prelude::*;
/// use ordofp_core::nexus::err;
///
/// // no_run: `err` is an unimplemented stub (see "Panics" below) — forcing
/// // it via `run_error` always panics, so it never actually reaches `Err`.
/// let comp: Eff<ErrorEff, i32> = err::<String, i32>("oops".to_string());
/// assert_eq!(run_error::<String, i32>(comp), Err("oops".to_string()));
/// ```
///
/// # Panics
///
/// **Stub:** the returned computation always panics when forced — the handler
/// infrastructure that would interpret `err` does not exist yet (the error
/// value is discarded). Use `effects::error::ErrorComputation` for working
/// error effects.
// =============================================================================
// IO Effect Operations
// =============================================================================
/// Marker type for the IO effect.
;
/// Type alias for IO effect row.
pub type IoEff = IO_BIT }>;
// =============================================================================
// Tests
// =============================================================================