Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

🔀 hal::pipe

Data Pipes & Stream Processing

369 satır Streaming

📖 Genel Bakış

Data pipes, stream processing ve buffering.

🚀 Kullanım

içe_aktar hal::pipe

// Create pipe
değişken pipe = pipe.create(1024)  // 1KB buffer

// Write data
pipe.write(pipe, [1, 2, 3, 4, 5])

// Read data
değişken data = pipe.read(pipe, 5)

// Pipe status
değişken available = pipe.available(pipe)
değişken is_full = pipe.is_full(pipe)

// Clear pipe
pipe.clear(pipe)

← HAL Modülleri