functionalthreading 1.0.1__tar.gz → 1.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {functionalthreading-1.0.1 → functionalthreading-1.0.2}/PKG-INFO +9 -9
- {functionalthreading-1.0.1 → functionalthreading-1.0.2}/README.md +8 -8
- {functionalthreading-1.0.1 → functionalthreading-1.0.2}/functionalthreading/functions/__init__.py +8 -8
- {functionalthreading-1.0.1 → functionalthreading-1.0.2}/functionalthreading.egg-info/PKG-INFO +9 -9
- {functionalthreading-1.0.1 → functionalthreading-1.0.2}/pyproject.toml +1 -1
- {functionalthreading-1.0.1 → functionalthreading-1.0.2}/LICENSE +0 -0
- {functionalthreading-1.0.1 → functionalthreading-1.0.2}/functionalthreading/__init__.py +0 -0
- {functionalthreading-1.0.1 → functionalthreading-1.0.2}/functionalthreading/classes/__init__.py +0 -0
- {functionalthreading-1.0.1 → functionalthreading-1.0.2}/functionalthreading.egg-info/SOURCES.txt +0 -0
- {functionalthreading-1.0.1 → functionalthreading-1.0.2}/functionalthreading.egg-info/dependency_links.txt +0 -0
- {functionalthreading-1.0.1 → functionalthreading-1.0.2}/functionalthreading.egg-info/top_level.txt +0 -0
- {functionalthreading-1.0.1 → functionalthreading-1.0.2}/setup.cfg +0 -0
- {functionalthreading-1.0.1 → functionalthreading-1.0.2}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: functionalthreading
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: Concurrent functional programming with thread-based parallelism
|
|
5
5
|
Author-email: Richard Tong <richytong@gmail.com>
|
|
6
6
|
License-Expression: Unlicense
|
|
@@ -272,9 +272,9 @@ chain(
|
|
|
272
272
|
|
|
273
273
|
### tmap(argument, function)
|
|
274
274
|
### tmap(function)
|
|
275
|
-
Map a function concurrently across each element of
|
|
275
|
+
Map a function concurrently across each element of a list or tuple.
|
|
276
276
|
|
|
277
|
-
A mapper is a function that specifies a single element of
|
|
277
|
+
A mapper is a function that specifies a single element of a list or tuple and returns a corresponding element of the resulting list or tuple. Each mapper invocation happens in a separate thread.
|
|
278
278
|
|
|
279
279
|
```python
|
|
280
280
|
squared = tmap([1, 2, 3], lambda n: n ** 2)
|
|
@@ -290,7 +290,7 @@ squared = my_mapping_func([1, 2, 3])
|
|
|
290
290
|
|
|
291
291
|
### tforeach(argument, function)
|
|
292
292
|
### tforeach(function)
|
|
293
|
-
Execute a callback concurrently for each element of
|
|
293
|
+
Execute a callback concurrently for each element of a list or tuple.
|
|
294
294
|
|
|
295
295
|
A callback is a function that does not necessarily specify a value or return. Each callback invocation happens in a separate thread.
|
|
296
296
|
|
|
@@ -308,9 +308,9 @@ my_foreach_func([1, 2, 3])
|
|
|
308
308
|
|
|
309
309
|
### tfilter(argument, function)
|
|
310
310
|
### tfilter(function)
|
|
311
|
-
Concurrently filter
|
|
311
|
+
Concurrently filter a list or tuple.
|
|
312
312
|
|
|
313
|
-
A predicate is a function that specifies an element of
|
|
313
|
+
A predicate is a function that specifies an element of a list or tuple and returns a boolean value. Elements corresponding to predicate invocations that return `False` are filtered out of the resulting list or tuple, while elements corresponding to predicate invocationsn that return `True` are retained. Each predicate invocation happens in a separate thread.
|
|
314
314
|
|
|
315
315
|
```python
|
|
316
316
|
def is_odd(n):
|
|
@@ -332,9 +332,9 @@ odd_numbers = filter_odds([1, 2, 3, 4, 5])
|
|
|
332
332
|
|
|
333
333
|
### reduce(argument, function, /[, initial])
|
|
334
334
|
### reduce(function, /[, initial])
|
|
335
|
-
Reduce
|
|
335
|
+
Reduce a list or tuple to a single value (accumulator).
|
|
336
336
|
|
|
337
|
-
A reducer is a function that specifies an accumulator and a given element of
|
|
337
|
+
A reducer is a function that specifies an accumulator and a given element of a list or tuple, and returns an accumulator. Each reducer invocation happens sequentially.
|
|
338
338
|
|
|
339
339
|
```python
|
|
340
340
|
# add is a reducer
|
|
@@ -360,7 +360,7 @@ sum = reducing_func([1, 2, 3, 4, 5])
|
|
|
360
360
|
|
|
361
361
|
### tflatmap(argument, function)
|
|
362
362
|
### tflatmap(function)
|
|
363
|
-
Apply a flatmapper concurrently to each element of
|
|
363
|
+
Apply a flatmapper concurrently to each element of a list or tuple, concatenating the results.
|
|
364
364
|
|
|
365
365
|
A flatmapper is a function that specifies an element of the list or tuple, and returns a list, tuple, or single element. A returned list or tuple is concatenated onto the resulting list or tuple, while a returned single element is appended. Each flatmapper invocation happens in a separate thread.
|
|
366
366
|
|
|
@@ -257,9 +257,9 @@ chain(
|
|
|
257
257
|
|
|
258
258
|
### tmap(argument, function)
|
|
259
259
|
### tmap(function)
|
|
260
|
-
Map a function concurrently across each element of
|
|
260
|
+
Map a function concurrently across each element of a list or tuple.
|
|
261
261
|
|
|
262
|
-
A mapper is a function that specifies a single element of
|
|
262
|
+
A mapper is a function that specifies a single element of a list or tuple and returns a corresponding element of the resulting list or tuple. Each mapper invocation happens in a separate thread.
|
|
263
263
|
|
|
264
264
|
```python
|
|
265
265
|
squared = tmap([1, 2, 3], lambda n: n ** 2)
|
|
@@ -275,7 +275,7 @@ squared = my_mapping_func([1, 2, 3])
|
|
|
275
275
|
|
|
276
276
|
### tforeach(argument, function)
|
|
277
277
|
### tforeach(function)
|
|
278
|
-
Execute a callback concurrently for each element of
|
|
278
|
+
Execute a callback concurrently for each element of a list or tuple.
|
|
279
279
|
|
|
280
280
|
A callback is a function that does not necessarily specify a value or return. Each callback invocation happens in a separate thread.
|
|
281
281
|
|
|
@@ -293,9 +293,9 @@ my_foreach_func([1, 2, 3])
|
|
|
293
293
|
|
|
294
294
|
### tfilter(argument, function)
|
|
295
295
|
### tfilter(function)
|
|
296
|
-
Concurrently filter
|
|
296
|
+
Concurrently filter a list or tuple.
|
|
297
297
|
|
|
298
|
-
A predicate is a function that specifies an element of
|
|
298
|
+
A predicate is a function that specifies an element of a list or tuple and returns a boolean value. Elements corresponding to predicate invocations that return `False` are filtered out of the resulting list or tuple, while elements corresponding to predicate invocationsn that return `True` are retained. Each predicate invocation happens in a separate thread.
|
|
299
299
|
|
|
300
300
|
```python
|
|
301
301
|
def is_odd(n):
|
|
@@ -317,9 +317,9 @@ odd_numbers = filter_odds([1, 2, 3, 4, 5])
|
|
|
317
317
|
|
|
318
318
|
### reduce(argument, function, /[, initial])
|
|
319
319
|
### reduce(function, /[, initial])
|
|
320
|
-
Reduce
|
|
320
|
+
Reduce a list or tuple to a single value (accumulator).
|
|
321
321
|
|
|
322
|
-
A reducer is a function that specifies an accumulator and a given element of
|
|
322
|
+
A reducer is a function that specifies an accumulator and a given element of a list or tuple, and returns an accumulator. Each reducer invocation happens sequentially.
|
|
323
323
|
|
|
324
324
|
```python
|
|
325
325
|
# add is a reducer
|
|
@@ -345,7 +345,7 @@ sum = reducing_func([1, 2, 3, 4, 5])
|
|
|
345
345
|
|
|
346
346
|
### tflatmap(argument, function)
|
|
347
347
|
### tflatmap(function)
|
|
348
|
-
Apply a flatmapper concurrently to each element of
|
|
348
|
+
Apply a flatmapper concurrently to each element of a list or tuple, concatenating the results.
|
|
349
349
|
|
|
350
350
|
A flatmapper is a function that specifies an element of the list or tuple, and returns a list, tuple, or single element. A returned list or tuple is concatenated onto the resulting list or tuple, while a returned single element is appended. Each flatmapper invocation happens in a separate thread.
|
|
351
351
|
|
{functionalthreading-1.0.1 → functionalthreading-1.0.2}/functionalthreading/functions/__init__.py
RENAMED
|
@@ -112,9 +112,9 @@ def _tmap(argument, func):
|
|
|
112
112
|
return result
|
|
113
113
|
|
|
114
114
|
def tmap(*args):
|
|
115
|
-
"""Map a function concurrently across each element of
|
|
115
|
+
"""Map a function concurrently across each element of a list or tuple.
|
|
116
116
|
|
|
117
|
-
A mapper is a function that specifies a single element of
|
|
117
|
+
A mapper is a function that specifies a single element of a list or tuple and returns a corresponding element of the resulting list or tuple. Each mapper invocation happens in a separate thread.
|
|
118
118
|
|
|
119
119
|
```python
|
|
120
120
|
squared = tmap([1, 2, 3], lambda n: n ** 2)
|
|
@@ -147,7 +147,7 @@ def _tforeach(argument, func):
|
|
|
147
147
|
return None
|
|
148
148
|
|
|
149
149
|
def tforeach(*args):
|
|
150
|
-
"""Execute a callback concurrently for each element of
|
|
150
|
+
"""Execute a callback concurrently for each element of a list or tuple.
|
|
151
151
|
|
|
152
152
|
A callback is a function that does not necessarily specify a value or return. Each callback invocation happens in a separate thread.
|
|
153
153
|
|
|
@@ -190,9 +190,9 @@ def _tfilter(argument, func):
|
|
|
190
190
|
return result
|
|
191
191
|
|
|
192
192
|
def tfilter(*args):
|
|
193
|
-
"""Concurrently filter
|
|
193
|
+
"""Concurrently filter a list or tuple.
|
|
194
194
|
|
|
195
|
-
A predicate is a function that specifies an element of
|
|
195
|
+
A predicate is a function that specifies an element of a list or tuple and returns a boolean value. Elements corresponding to predicate invocations that return `False` are filtered out of the resulting list or tuple, while elements corresponding to predicate invocationsn that return `True` are retained. Each predicate invocation happens in a separate thread.
|
|
196
196
|
|
|
197
197
|
```python
|
|
198
198
|
def is_odd(n):
|
|
@@ -217,9 +217,9 @@ def tfilter(*args):
|
|
|
217
217
|
return _tfilter(*args)
|
|
218
218
|
|
|
219
219
|
def reduce(*args):
|
|
220
|
-
"""Reduce
|
|
220
|
+
"""Reduce a list or tuple to a single value (accumulator).
|
|
221
221
|
|
|
222
|
-
A reducer is a function that specifies an accumulator and a given element of
|
|
222
|
+
A reducer is a function that specifies an accumulator and a given element of a list or tuple, and returns an accumulator. Each reducer invocation happens sequentially.
|
|
223
223
|
|
|
224
224
|
```python
|
|
225
225
|
# add is a reducer
|
|
@@ -273,7 +273,7 @@ def _tflatmap(argument, func):
|
|
|
273
273
|
return result
|
|
274
274
|
|
|
275
275
|
def tflatmap(*args):
|
|
276
|
-
"""Apply a flatmapper concurrently to each element of
|
|
276
|
+
"""Apply a flatmapper concurrently to each element of a list or tuple, concatenating the results.
|
|
277
277
|
|
|
278
278
|
A flatmapper is a function that specifies an element of the list or tuple, and returns a list, tuple, or single element. A returned list or tuple is concatenated onto the resulting list or tuple, while a returned single element is appended. Each flatmapper invocation happens in a separate thread.
|
|
279
279
|
|
{functionalthreading-1.0.1 → functionalthreading-1.0.2}/functionalthreading.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: functionalthreading
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: Concurrent functional programming with thread-based parallelism
|
|
5
5
|
Author-email: Richard Tong <richytong@gmail.com>
|
|
6
6
|
License-Expression: Unlicense
|
|
@@ -272,9 +272,9 @@ chain(
|
|
|
272
272
|
|
|
273
273
|
### tmap(argument, function)
|
|
274
274
|
### tmap(function)
|
|
275
|
-
Map a function concurrently across each element of
|
|
275
|
+
Map a function concurrently across each element of a list or tuple.
|
|
276
276
|
|
|
277
|
-
A mapper is a function that specifies a single element of
|
|
277
|
+
A mapper is a function that specifies a single element of a list or tuple and returns a corresponding element of the resulting list or tuple. Each mapper invocation happens in a separate thread.
|
|
278
278
|
|
|
279
279
|
```python
|
|
280
280
|
squared = tmap([1, 2, 3], lambda n: n ** 2)
|
|
@@ -290,7 +290,7 @@ squared = my_mapping_func([1, 2, 3])
|
|
|
290
290
|
|
|
291
291
|
### tforeach(argument, function)
|
|
292
292
|
### tforeach(function)
|
|
293
|
-
Execute a callback concurrently for each element of
|
|
293
|
+
Execute a callback concurrently for each element of a list or tuple.
|
|
294
294
|
|
|
295
295
|
A callback is a function that does not necessarily specify a value or return. Each callback invocation happens in a separate thread.
|
|
296
296
|
|
|
@@ -308,9 +308,9 @@ my_foreach_func([1, 2, 3])
|
|
|
308
308
|
|
|
309
309
|
### tfilter(argument, function)
|
|
310
310
|
### tfilter(function)
|
|
311
|
-
Concurrently filter
|
|
311
|
+
Concurrently filter a list or tuple.
|
|
312
312
|
|
|
313
|
-
A predicate is a function that specifies an element of
|
|
313
|
+
A predicate is a function that specifies an element of a list or tuple and returns a boolean value. Elements corresponding to predicate invocations that return `False` are filtered out of the resulting list or tuple, while elements corresponding to predicate invocationsn that return `True` are retained. Each predicate invocation happens in a separate thread.
|
|
314
314
|
|
|
315
315
|
```python
|
|
316
316
|
def is_odd(n):
|
|
@@ -332,9 +332,9 @@ odd_numbers = filter_odds([1, 2, 3, 4, 5])
|
|
|
332
332
|
|
|
333
333
|
### reduce(argument, function, /[, initial])
|
|
334
334
|
### reduce(function, /[, initial])
|
|
335
|
-
Reduce
|
|
335
|
+
Reduce a list or tuple to a single value (accumulator).
|
|
336
336
|
|
|
337
|
-
A reducer is a function that specifies an accumulator and a given element of
|
|
337
|
+
A reducer is a function that specifies an accumulator and a given element of a list or tuple, and returns an accumulator. Each reducer invocation happens sequentially.
|
|
338
338
|
|
|
339
339
|
```python
|
|
340
340
|
# add is a reducer
|
|
@@ -360,7 +360,7 @@ sum = reducing_func([1, 2, 3, 4, 5])
|
|
|
360
360
|
|
|
361
361
|
### tflatmap(argument, function)
|
|
362
362
|
### tflatmap(function)
|
|
363
|
-
Apply a flatmapper concurrently to each element of
|
|
363
|
+
Apply a flatmapper concurrently to each element of a list or tuple, concatenating the results.
|
|
364
364
|
|
|
365
365
|
A flatmapper is a function that specifies an element of the list or tuple, and returns a list, tuple, or single element. A returned list or tuple is concatenated onto the resulting list or tuple, while a returned single element is appended. Each flatmapper invocation happens in a separate thread.
|
|
366
366
|
|
|
File without changes
|
|
File without changes
|
{functionalthreading-1.0.1 → functionalthreading-1.0.2}/functionalthreading/classes/__init__.py
RENAMED
|
File without changes
|
{functionalthreading-1.0.1 → functionalthreading-1.0.2}/functionalthreading.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{functionalthreading-1.0.1 → functionalthreading-1.0.2}/functionalthreading.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|