Coming soon - Get a detailed view of why an account is flagged as spam!
view details

This post has been de-listed

It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.

1
Help with understanding a line of code in Scheme R5RS
Post Body

Hello! I'm having troubles with what these lines are saying.

(define (accumulate combiner null-value term a next b)

(if (> a b)

null-value

(combiner (term a) (accumulate combiner null-value term (next a) next b)))) <--- THIS LINE

-----------------------------------

(define (accumulate-tr combiner null-value term a next b)

(if (> a b)

null-value

(accumulate-tr combiner (combiner (term a) null-value) term (next a) next b))) <--- THIS LINE

So I'm just confused as to what is happening there's so many variables so many terms I'm kind of overwhelmed. Can anyone dumb it down for :/? Thank you very much!!!!!!!!!

Author
User Disabled
Account Strength
0%
Disabled 5 months ago
Account Age
4 years
Verified Email
No
Verified Flair
No
Total Karma
530
Link Karma
351
Comment Karma
105
Profile updated: 1 day ago
Posts updated: 6 months ago

Subreddit

Post Details

We try to extract some basic information from the post title. This is not always successful or accurate, please use your best judgement and compare these values to the post title and body for confirmation.
Posted
3 years ago