=
"""Iterate and generate a tuple with a flag for first value."""
=
=
return
yield True,
yield False,
"""Iterate and generate a tuple with a flag for last value."""
=
=
return
yield False,
=
yield True,
"""Iterate and generate a tuple with a flag for first and last value."""
=
=
return
= True
yield , False,
= False
=
yield , True,