👉 In computer science, the term "decursively" refers to a recursive function or algorithm that explores all possible subproblems within a given problem's scope. This means that the algorithm will only return results for certain conditions and not proceed further into the recursion depth of the problem.
For example, consider the following recursive function in Python:
```python
def factorial(n):
if n == 0:
return 1
else:
return n
factorial(n - 1)
```