swiftlang/swift

[SR-7136] Fast-path ad-hoc printing of Strings

Open

#49 684 ouverte le 7 mars 2018

Voir sur GitHub
 (10 commentaires) (0 réactions) (0 assignés)Swift (10 719 forks)batch import
buggood first issuestandard library

Métriques du dépôt

Stars
 (69 989 stars)
Métriques de merge PR
 (Merge moyen 8j 17h) (510 PRs mergées en 30 j)

Description

Previous ID SR-7136
Radar None
Original Reporter @jckarter
Type Bug

Attachment: Download

Votes 0
Component/s Standard Library
Labels Bug, StarterBug
Assignee None
Priority Medium

md5: 2686733126be82154b524085fb9de797

Issue Description:

Using Strings with print, string interpolation, String(describing:), etc., is extremely common, but goes through the generic protocol testing dispatch mechanism everything does. We should dynamically check whether something is a String and just print the string.

Guide contributeur