std-string-list-p


Synopsis

(std-string-list-p <expr>)

Description

Predicate if the expression is a proper list and all elements are strings.

Example

(std-string-list-p '("A" "B")) => T

same as:

(std-every 'stringp expr)

Arguments

expr: any valid lisp expression

Return Value

T or nil.

Side Effects

None.

Module

(std-require 'STDLIST)

Defined in STDLIST