I've been searching around for tutorials on what accumulators are and what they do, however all the explainations seems to be very overcomplicated and don't really give me a clear enough picture of how they work so that I can make use of it. I seem to understand that accumulators hold onto something such as a number which can then be called upon by other pieces of code and changed. The problem is although I understand what a accumulator is and know when I need one, I'm not too sure how to actually use it.
I mean from the tutorials that I've seen, sometimes the accumulator seems to be a empty list, while other times it seems to be '0' leaving me wondering what exactly can be considered a accumulator and what can not. Can someone please explain to me in simple terms how exactly a accumulator can be used?
Also for the second part of my question, I seem to have noticed people using this a lot in their prolog codes:
\+member
I've managed to deduce that it has something to do with lists since I always see it being used inside a line of code that does something to a list, however after searching around I found that what +member actually means is "Negation as failure - not provable" though I don't really understand what this means or even if that person was correct. Again, can someone please explain to me what exactly +member does and what it can be used for whilst trying to keep your explanation simple, big words confuse me xD.
Thanks a lot for any help regarding these two matters.