TIP #334 Version 1.1: Make 'lrepeat' Accept Zero as a Count

This is not necessarily the current version of this TIP.


TIP:334
Title:Make 'lrepeat' Accept Zero as a Count
Version:$Revision: 1.1 $
Author:Michael Thomas Greer <michael dot thomas dot greer at verizon dot net>
State:Draft
Type:Project
Tcl-Version:8.6
Vote:Pending
Created:Monday, 13 October 2008
Keywords:empty list

Abstract

Following on from TIP #323, the lrepeat command should also act gracefully when a repeat count of zero is used, as an empty list is still a valid list.

Rationale

A list of zero items is a valid, empty list. In my own experience (I cannot speak for others'), generating a list of N identical elements is more often an algorithmic expression than a literal shorthand, and often enough an empty list is the correct result. All other core list commands properly handle empty lists; but lrepeat complains when given a count of zero repetitions, requiring additional code to handle this (doubly) exceptional condition.

Proposal

The lrepeat command should be changed so that when it's first, count, argument is zero, it returns an empty list.

Copyright

This document has been placed in the public domain.


Powered by TclThis is not necessarily the current version of this TIP.

TIP AutoGenerator - written by Donal K. Fellows